0
I set up a website using Mobirize and it has a Facebook icon that when clicked you share the site on your face as a post. I would like it to open a new tab instead with a specific Facebook page.In this case what opens the popup is the code
popupUrl: 'https://www.facebook.com/sharer/sharer.php?u={url}',
code:
var services = {
facebook: {
// https://developers.facebook.com/docs/reference/fql/link_stat/
counterUrl: 'https://graph.facebook.com/fql?q=SELECT+total_count+FROM+link_stat+WHERE+url%3D%22{url}%22&callback=?',
convertNumber: function(data) {
return data.data[0].total_count;
},
popupUrl: 'https://www.facebook.com/sharer/sharer.php?u={url}',
popupWidth: 600,
popupHeight: 359
},
A
target="_blank"
doesn’t solve ?– Mauro Alexandre
How to force the opening of a link in another tab and not window?
– Renan Gomes
only that it opens a popup I wanted it to open another tab with the Facebook page, and not common field to buy the site on Timeline
– Fratura Exposta