Jump to content

Create Popup Window


takeiteasy

Recommended Posts

<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!

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.