Quote:
Originally Posted by AN-net
would it work like this?:
HTML Code:
<a href="popup.html" target="popup" onclick="window.open('popup.html', 'popup', 'height=200,width=200')">blah</a>
|
HTML Code:
<a href="popup.html" target="popup" onclick="if(window.open(this.href, this.target, 'height=200,width=200')) return false">blah</a>
Try that: but yes the above would work too, you would just have the page behind change as well as popping up in a new window...