I do not understand why the scrollTop() jquery function is not working on the \'body\' element on Firefox.
$(\'body\').scrollTop(0);
I fixe
Use window if you want consistency between browsers.
window
$(window).scrollTop();