scrolling frames

Out of context: Reply #1

  • Started
  • Last post
  • 5 Responses
  • blaw0

    this for the same thing, but horizontal. in this case, the following code appears in the right frame, and scrolls the left with it. (hope the code pastes):

    var theTop;
    function ScrollMaster() {
    if (document.documentElement && document.documentElement.scrollT... {
    theTop = document.documentElement.scrollT...
    } else {
    theTop = document.body.scrollTop;
    }
    parent.frames["left"].scrollTo(0...
    }
    window.onscroll=function(){Scrol...

View thread