The rows below are generated dynamically
<input id="soid0" name="soid[0].name" type="text" />
<input id="soid1" name="soid[1].name" type="text" />
<input id="soid2" name="soid[2].name" type="text" />
And as I traverse through the text field Ajax query should call the back end and get the matching data if any existed
$(document).ready(function() {
$( "#soid0" ).autocomplete({
source: "/myapp/soid.htm"
});
});
The query works but I want it to work for all the dynamically generated rows #soid0,#soid1? In short, I need one query that works for all the text field.
Thanks