Jump to content

[SOLVED] default focus to an input field


anatak

Recommended Posts

Hello,

 

How can I put the focus to an input field when the page loads ?

 

I would like the focus to go to the login form on my page.

I tried tabindex="1" but that puts the focus only on the input field when the tab key is pressed.

 

kind regards

anatak

Link to comment
https://forums.phpfreaks.com/topic/80937-solved-default-focus-to-an-input-field/
Share on other sites

do it like this:

 

<script language=""javascript>
window.onload=function() {
document.loginform.username.focus();
}
</script>

<form name="loginform" action="whatever.php" method="post">
Login: <input type="text" name="username"><br><br>
Password: <input type="password" name="password"><br><br>
<input type="submit" value="Sign In">
<input type="reset">
</form>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.