$(\"html\").scrollTop($(document).height(),function(){ $(\"#page_jump_input\").focus(); });
I can\'t get a callback function to work on the met
This could solve your problem
$('html').animate({ scrollTop: $(document).height() }, function(){ $("#page_jump_input").focus(); });
It uses jQuery animate as scrollTop() has no callback function.
scrollTop()