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! Quote Link to comment 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 Quote Link to comment 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! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.