php? Posted October 4, 2007 Share Posted October 4, 2007 Im wondering how i would make a new screen pop up, the kind that doesn't have a search bar or anything, just a internet window... after you click on the link. Code: <table cellpadding="4"> <tr> <td> <a href="client/load.php"><img src="blitzlaunch.png" alt="Launch Blitz!"></a> Quote Link to comment Share on other sites More sharing options...
teng84 Posted October 4, 2007 Share Posted October 4, 2007 thats Java script Quote Link to comment Share on other sites More sharing options...
teng84 Posted October 4, 2007 Share Posted October 4, 2007 ok <html> <head> <script type="text/javascript"> function alertValue() { //alert(document.getElementById('txt1').value); myWindow=window.open('','','width=200,height=100') myWindow.document.write(document.getElementById('txt1').value) myWindow.focus() } </script> </head> <body> <textarea id="txt1"> Hello world....This is a text area </textarea> <br /> <input type="button" onClick="alertValue()" value="Alert value" /> </body> </html> thats solved it 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.