Hi guys,
I have 2 divs on my page with different ids.
Both divs contain a form but the forms have the same name:
<div id="div1">
<form name="aForm">
.....
</form>
</div>
<div id="div2">
<form name="aForm">
.....
</form>
</div>
Is it possible to target one of the forms in jQuery using the div id to differentiate the forms?