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> Link to comment https://forums.phpfreaks.com/topic/71764-pop-up-screen/ Share on other sites More sharing options...
teng84 Posted October 4, 2007 Share Posted October 4, 2007 thats Java script Link to comment https://forums.phpfreaks.com/topic/71764-pop-up-screen/#findComment-361403 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 Link to comment https://forums.phpfreaks.com/topic/71764-pop-up-screen/#findComment-361408 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.