Magento open a site in new tab by javascript -
how can opens new tab in magento using javascript call other site? when use this, new window opens:
var w = window.open('/offerte/<?php echo $debiteur ;?>.pdf','_blank','fullscreen=yes');
you want open url in new tab code running?
giving _tab creates new tab.
var w = window.open('/offerte/<?php echo $debiteur ;?>.pdf','_tab','fullscreen=yes');
same
window.open("http://www.youraddress.com","_self")
new tab
window.open("http://www.youraddress.com","_tab")
i hope of examples can out problem.
Comments
Post a Comment