View Full Version : Pop up window


Bowser
10-25-2005, 06:57 AM
How do you create a link that goes to a small pop up window?

iTom
10-25-2005, 10:08 AM
you want javascript... here u go:


<script>
function openWin(winUrl){
var win=window.open(winUrl,"","width=300,height=300,status,resizable=no")
}
</script>

<a href="#" onclick="openWin('http://yourwebsite.com/')">your text</a>


that should work.

Bowser
10-26-2005, 11:40 AM
yeah thanks, it did!