takeiteasy Posted July 12, 2006 Share Posted July 12, 2006 Hi all,Just want to ask if there's any codes that when clicked on a link, a small popup window will appear? Thanks alot! Link to comment https://forums.phpfreaks.com/topic/14356-create-popup-window/ Share on other sites More sharing options...
kenrbnsn Posted July 12, 2006 Share Posted July 12, 2006 This is a question for Javascript, not PHP. I'm moving this to the Javascript section Link to comment https://forums.phpfreaks.com/topic/14356-create-popup-window/#findComment-56594 Share on other sites More sharing options...
wakmp Posted July 12, 2006 Share Posted July 12, 2006 <script language='javascript'>var pop = window.createPopup();function show(){ pop.document.open(); pop.document.write('<body bgColor="green">ha , look here !</body>'); pop.document.close(); pop.show(300,300,100,100);}</script><a href='javascript:show();'>Popup</a>Try that! Link to comment https://forums.phpfreaks.com/topic/14356-create-popup-window/#findComment-56607 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.