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

Popular posts from this blog

android - Get AccessToken using signpost OAuth without opening a browser (Two legged Oauth) -

org.mockito.exceptions.misusing.InvalidUseOfMatchersException: mockito -

google shop client API returns 400 bad request error while adding an item -