vote up 0 vote down star

Hi All, an anyone tell how can i make a button on page onload.As i have a login page and i want to make the login button selected onload and when i press eneter the onclick of button should be called. I want to do this in chorme. Thanks

flag

4 Answers

vote up 1 vote down

try this:

<script>
  window.onload=function(){
    document.getElementById('YourButtonId').focus();
  }
</script>
link|flag
vote up 0 vote down

If you are using asp.net try asp panel's default button property to ur button and thats it....

link|flag
vote up 0 vote down

I don't know f it's different for chrome, but while the user is editing any form the enter button should automatically click the Submit button

link|flag
vote up 1 vote down

yes you can use the focus function to set the focus the your button

link|flag

Your Answer

Get an OpenID
or

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