Wrox Home  
Search P2P Archive for: Go

  Return to Index  

javascript thread: Please help. Positioning problem.


Message #1 by "Jay Pipes" <skippy@r...> on Fri, 15 Jun 2001 22:10:27
Hi Jay,
You almost had it. The property you need is the scrollTop and scrollLeft 
for the body tag. So the code would be:


window.onscroll = function() {
  var iLeftRelative = document.body.scrollLeft;
  var iTopRelative = document.body.scrollTop;
  var divDisplay = document.getElementById('divCommands');
  divDisplay.style.left = iLeftRelative + 10;
  divDisplay.style.top = iTopRelative + 10;
}

Good luck
Philip

  Return to Index