Re: IE bug/issue with changing the frameset properties through DHTML
- From: nolo contendere <simon.chao@xxxxxxx>
- Date: Mon, 28 Apr 2008 09:56:33 -0700 (PDT)
On Apr 28, 10:19 am, Berlin Brown <berlin.br...@xxxxxxxxx> wrote:
http://www.w3schools.com/htmldom/prop_frame_scrolling.asp
I want to be able to get this example working with Internet explorer.
it works fine in firefox. Does anyone have an idea how to resolve
this bug.
'Basically, I want to be able to change the properties of a frame
after the properties have been defined.
E.g. turn scrolling from "no" to "yes"
hmm, well since no one else is stepping up, i'll give an attempt. if
this leads to a correction, hey, at least it will prove
educational :-).
based on the link you provided, i tinkered around with it, and came up
with:
// add this to the enableScrolling() function
parent.document.getElementById("leftFrame").style.overflow="scroll"
parent.document.getElementById("rightFrame").style.overflow="scroll"
// add this to the disableScrolling() function
parent.document.getElementById("leftFrame").style.overflow="auto"
parent.document.getElementById("rightFrame").style.overflow="auto"
.
- Follow-Ups:
- Re: IE bug/issue with changing the frameset properties through DHTML
- From: nolo contendere
- Re: IE bug/issue with changing the frameset properties through DHTML
- References:
- IE bug/issue with changing the frameset properties through DHTML
- From: Berlin Brown
- IE bug/issue with changing the frameset properties through DHTML
- Prev by Date: Re: XHR and responseXML == null why ?
- Next by Date: Re: Preload images
- Previous by thread: IE bug/issue with changing the frameset properties through DHTML
- Next by thread: Re: IE bug/issue with changing the frameset properties through DHTML
- Index(es):
Relevant Pages
|