Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

fast help please in javascript

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I have this script that work best for me on IE.
what do i need to change inorder for it to work on netscape??
the idea is that i have 2 frames on some pages that are directed to 1 of the frames i want a scroller and on some i dont.
i cant use - scrolling="Auto" but this function worked great on IE.

please answer fast i need "yesterday"....... thankes.

<script>
<!--
function scNo()
{
parent.document.all.tags(&quot;FRAME&quot;)[1].scrolling = &quot;no&quot;
}
//-->
</script>
 
go to devedge ! i'm sure there is the answer, i just don't have time to look for it for you
 
use parent.framename.scrolling=0 or parent.frames[1].scrolling=0 or even parent.document.frames[1].scrolling=0.
Sincerely,

Tom Anderson
CEO, Order amid Chaos, Inc.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top