Detect enter in input elements of a certain class
You can use live (.on()) events in document
with keydown
(I think this is better). It'll allow you detect keydown
in current and future elements that matches with a selector.
HTML:
<strong>Personal Name</strong>
<input type='text' class='large' /><br />
<strong>Email</strong>
<input type='text' class='large' />
JS (jQuery 1.7+):
Note: .which
, .code
, .charCode
and .keyCode
is now deprecated. Use the following new solution:
jQuery(document).on('keydown', 'input.large', function(ev) {
if(ev.key === 'Enter') {
// Will change backgroundColor to blue as example
this.style.backgroundColor = '#EFF';
// Avoid form submit
return false;
}
});
jsFiddle: http://jsfiddle.net/david_proweb/fjgvhubn/2/
check this one: http://jsfiddle.net/EJyyr/
used this html:
<tr><td> Personal Name </td></tr>
<tr><td> <input type='text' class='large' id='a'> </td></tr>
<tr><td> Email</td></tr>
<tr><td> <input type='text' class='large' id='b'> </td></tr>
and this is the jQuery which logs the input text id
$('.large').keypress(function (e) {
if(e.which ==13)
console.log($(this).attr('id'));
});