You don't have enough closing ) to call .ready() , and you shouldn't have # before body .
Try the following:
jQuery(document).ready(function() { $('body iframe').load(function(){ $(window).scrollTop(0); }); });
With these fixes, the window returns to the top when loading new content.
user113716
source share