This script:
function onscroll(){ document.getElementById(\"divs\").style.top=\"\"+$(\'body\').scrollTop()+\"px\"; }
Fiddle: http://jsf
Try this fiddle, it is working in chrome, ie and the latest version of mozilla : http://jsfiddle.net/Hed2J/3/
I replace $('body').scrollTop() with $(window).scrollTop().
$('body').scrollTop()
$(window).scrollTop()