hi2you Posted February 28, 2008 Share Posted February 28, 2008 Hi all, Is there any way to auto open a web page in a new window when I reach a certain page?? Thanks Link to comment https://forums.phpfreaks.com/topic/93474-auto-open-a-page-in-a-new-window/ Share on other sites More sharing options...
vicodin Posted February 28, 2008 Share Posted February 28, 2008 Sure with javascript. function opennewwindow(url) { newwindow=window.open(url,'name','height=200,width=150'); if (window.focus) {newwindow.focus()} return false; ////put this in your body. <body onLoad='opennewwindow(url);'> Link to comment https://forums.phpfreaks.com/topic/93474-auto-open-a-page-in-a-new-window/#findComment-478891 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.