themes/iphone/scrollfix.js
author Dan
Wed, 02 Apr 2008 01:36:53 -0400
changeset 16 23d4cf2f183b
parent 4 cde92f6ec29f
permissions -rw-r--r--
Disabled forking/keep-alive code, firefox doesn't seem to like the way it waits for requests

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;