-1
On my site I have a floating button that has an image and allows me to put a URL, but does not have the option to open in a new tab. You only have space for the URL.
I wonder if it has how to do the function target=_blank
direct in the URL, type www.meusite.com.br/contato=_blank
This way, even without having the manual option to open in a new tab, I could put the target=_blank
right in the URL and open in a new tab when clicked on this link.
Is there such a thing?
Can it be with Javascript? There are a multitude of ways to do using Js...
– hugocsl
Try to insert:
javascript: window.open('pagina.html', '_blank')
– Sam