Quote:
Originally Posted by SmokeyTheBear
self.resizeto(300,300);
|
I tried both this:
<script language="JavaScript">
<!-- START
if (top.frames.length!=0)
top.location=self.document.location;
self.moveTo(0,0)
self.resizeto(300,300)
// END -->
</script>
and this:
<script language="JavaScript">
<!-- START
if (top.frames.length!=0)
top.location=self.document.location;
self.moveTo(0,0)
self.resizeto(300,300);
// END -->
</script>
neither worked and gives me some javascript error. Do I need to add something to the body tag?