Hello everybody! Question for you
I’ve a form with different tag, each in a
Something like that:
<form id=myForm>
<div><input name="name1"></div>
<div><input name="name2"></div>
<div><input name="name3"></div>
</form>
I’m searching for the Jquery selector of specific input in the form, by name, for a function which have the #id of the form.
I guess something like $(’#id div input[name=name]’)
But it doesn’t work…
Thanks for your help in advance!