themes/iphone/scrollfix.js
author Dan
Wed, 24 Sep 2008 13:47:42 -0400
changeset 54 6d8b9497e44b
parent 4 cde92f6ec29f
permissions -rw-r--r--
Added check for PHP 5.1.0 and improved error handling for missing pcntl

function getScrollOffset()
{
  var position;
  if (self.pageYOffset)
  {
    position = self.pageYOffset;
  }
  else if (document.documentElement && document.documentElement.scrollTop)
  {
    position = document.documentElement.scrollTop;
  }
  else if (document.body)
  {
    position = document.body.scrollTop;
  }
  return position;
}

var fix_scroll = function()
{
  var div = document.getElementById('playbar');
  div.style.top = ( String(getScrollOffset()) ) + 'px';
}

window.onscroll = fix_scroll;