Frame doubt

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rsrinivasan
    New Member
    • Mar 2007
    • 221

    Frame doubt

    Hi,

    Im using two frame in my jsp page. In this first frame has header and second frame has body. In the header frame i have one menu. When I scroll down the body frame, the menu item is hidden by the body frame. How to resolve it...

    Thanks,
    Srinivas r.
    Last edited by rsrinivasan; May 21 '07, 10:01 AM. Reason: Correction
  • dmjpro
    Top Contributor
    • Jan 2007
    • 2476

    #2
    try to trap scroll event.
    or check the value of document.body.s crollLeft and scrollTop.

    i think it ll work.
    kind regards.
    dmjpro.

    Comment

    • rsrinivasan
      New Member
      • Mar 2007
      • 221

      #3
      Originally posted by dmjpro
      try to trap scroll event.
      or check the value of document.body.s crollLeft and scrollTop.

      i think it ll work.
      kind regards.
      dmjpro.
      Hi,

      I can't undersatnd. This is my FRAMESET.

      Code:
      <frameset rows="60,*,20"  border="0" framespacing="0" frameborder="no">
        <frame src="navigation.jsp" name="mainFrame" scrolling="NO" border="0">
        <frame src="/dealcapture/supplymodel/tradelog/tradeloglist.jsp" name="mFrame" frameborder="no" scrolling="yes" border="0">
      </frameset>
      I need where to change it...
      Thanks,
      Srinivas r

      Comment

      Working...