hi. i just want to know if that is possible.
for example there are 5 blank textboxes with no specific id or class:
<input type="text">
<input type="text">
<input type="text">
<input type="text">
<input type="text">
is there a way to loop through the textboxes and find the first blank textbox?
say the top already has a value inserted by user:
not blank: <input type="text">
blank:
<input type="text">
<input type="text">
<input type="text">
<input type="text">
so through the loop the result would be the blank textbox below the not blank textbox. TIA