believeinsharing Posted July 24, 2012 Share Posted July 24, 2012 is their any way to open a popup window i php page. I want to click on a click and would like to open a page as a popup nt a new full page Thanks Link to comment https://forums.phpfreaks.com/topic/266190-popup-window/ Share on other sites More sharing options...
peipst9lker Posted July 25, 2012 Share Posted July 25, 2012 Do you mean some kind of div-overlay or a new small browser window? For the overlay check out jQuery.ajax() For the browser window this here might help function popup (url) { var pop = window.open(url, "popup title", "width=400,height=300,resizable=yes"); pop.focus(); return false; } Link to comment https://forums.phpfreaks.com/topic/266190-popup-window/#findComment-1364171 Share on other sites More sharing options...
beven Posted July 26, 2012 Share Posted July 26, 2012 I agree with this man peipst9lker Link to comment https://forums.phpfreaks.com/topic/266190-popup-window/#findComment-1364507 Share on other sites More sharing options...
believeinsharing Posted July 26, 2012 Author Share Posted July 26, 2012 thanks peipst9lker n beven Link to comment https://forums.phpfreaks.com/topic/266190-popup-window/#findComment-1364589 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.