I have form elements like this:
<input type='text' id='person_1_name'>
<input type='text' id='person_2_name'>
<input type='text' id='person_3_name'>
<input type='text' id='person_4_name'>
<input type='text' id='person_5_name'>
..
..
..
I can select single element like this:
$("#person_1_name").focusout( function() {
alert("Hello World");
});
Is there any selector that select all elements(person_<*>_name) like this without describing them separately ?
Thanks