View Single Post
Old 12-12-2012, 11:49 AM   PM User | #3
vwphillips
Senior Coder

 
Join Date: Mar 2005
Location: Portsmouth UK
Posts: 4,354
Thanks: 3
Thanked 457 Times in 444 Posts
vwphillips is a jewel in the roughvwphillips is a jewel in the roughvwphillips is a jewel in the rough
Code:
window.onscroll = function (e) {
var basediv = document.getElementById('basediv').offsetTop;
var setdiv = document.getElementById('setdiv');
var top=getScroll()[1];
 if (top < basediv) {
 setdiv.style.top = "0px";
 }
 else {
 setdiv.style.top = top - basediv + "px");
 }
}

function getScroll(){
 if (window.innerHeight){
  return [window.pageXOffset,window.pageYOffset];
 }
 else if (document.documentElement.clientHeight){
  return [document.documentElement.scrollLeft,document.documentElement.scrollTop];
 }
 return [document.body.scrollLeft,document.body.scrollTop];
}
__________________
Vic

God Loves You and will never love you less.

http://www.vicsjavascripts.org.uk/

If my post has been useful please donate to http://www.operationsmile.org.uk/
vwphillips is online now   Reply With Quote