I got multiple forms. I have 5 text fields.
<form action="action_page.php">
First name:<br>
<input type="text" name="firstname"br>
Last name:<br>
<input type="text" name="lastname""><br>
Age:<br>
<input type="text" name="age"br>
State:<br>
<input type="text" name="state"br>
Profession:<br>
<input type="text" name="profession"br><br>
<input type="submit" value="Submit">
</form>
While the user is tabbing through the fields, how can I set an alert when focused on the age
field?
You can use focus event:
$("input[name = 'age']").focus(function() {
alert( "focused on age inputbox." );
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With