Magento 1 – Contact Form Page Scrolls to Bottom on Load

contact-formforms

I have a problem with my website. On loading it scrolls automatically to the bottom.

It is because there is a contact form with focus on name. How can I remove this focus?

Site

Best Answer

Change this line from the contact from

var contactForm = new VarienForm('contactFormNew', true);

with

var contactForm = new VarienForm('contactFormNew', false);

The second parameter means "focus on first field". That's why you get the down scroll.

Related Topic