CODE
<script language="JavaScript">
// Place this script within <head> section.
function goPop(){
goPopWindow = window.open("http://www.mysite.com/popup.html","","width=350,height=300,");
}
</script>
<!-- Place within <body> section -->
<a href="java script:goPop()">Click Here</a>
In I.E. this works just fine, but I want to make it truly un-resizable in FireFox.
Now, it won't let you resize it from the horizontal or vertical edges of the FF browser window, however there is a part in the corner of the browser which will let you resize it anyway which I don't want (Screencaps available on request if need be.)
I was wondering, is there an extra bit of code to get rid of the bottom status/resize bar in FireFox?
Thanks!
