views:

37

answers:

2

I just installed a script to focus at my first input field, which is toward the footer. The focus works great, but the page scrolls to the bottom after loading.

Can I still use the focus and stop the page from scrolling down to the first input field?

http://www.ubspack.com/

+2  A: 

Insert this at the end of the page:

 <script type="text/javascript">
 window.scrollTo(0, 0);
 </script>

This will again scroll the page to the top.

shamittomar
this code can be put in $(document).ready() or in $(function(){ })
Ayaz Alavi
+1  A: 
$(function(){
     $("input").focus();
     $('html, body').animate({scrollTop:0}, 'slow'); 
});)
Ayaz Alavi