0
In the code below I get the values stored in several <textarea>
with the use of the function each
.
But I would like to do the same in another way, using a for
.
It is possible to pick up these values by scanning with a for
, how should I do?
$("textarea[name='arraytextArea[]']:not(:first)").each(function () {
alert($(this).val());
});
thank you!!!!!!!
– thiago xavier