I have two buttons for the same form. In the HTML code I declared first the "Button One" and after the "Button Two".

When I display the form, the focus is on the "Button One", but I would like to have it on the other one without change them the screen position.

What I can do?

link|improve this question

using jQuery $('#btnId').focus() – Eric Fortis Dec 19 '10 at 6:48
Please start accepting answers – dheerosaur Dec 19 '10 at 7:43
feedback

2 Answers

up vote 0 down vote accepted
$(document).ready(function() {
  $("#Button Two").focus();
});
link|improve this answer
feedback

Set tabindex to the second button less than the first one.

EDIT

yes, you can use javascript, document.getElementById("button2").focus();. Make sure you add this code on page load.

link|improve this answer
I tried that but it does not work. Maybe I have to use some JavaScript... so, it will work with all browsers? – user502052 Dec 19 '10 at 7:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.