Jump to content

Simple popup window


Lee-Bartlett

Recommended Posts

I  want a button when clicked to open a new page, i was looking at somthing like

 

<script language=JavaScript>

<!--

window.open("/templates/weekend.html",

"w3adIAYJAAII",

"width=650,height=400");

//-->

</script>

 

but wasnt sure how to get the to be on click on a button in a form.

Link to comment
https://forums.phpfreaks.com/topic/129484-simple-popup-window/#findComment-671287
Share on other sites

How about trying this...

 

<FORM>
<INPUT type="button" value="New Window!" onClick="window.open('http://www.google.com','mywindow','width=600,height=400,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes')">
</FORM> 

 

So you could edit the elements in the pop up window.

Link to comment
https://forums.phpfreaks.com/topic/129484-simple-popup-window/#findComment-671296
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.