Forum Moderators: open
The question is whether the input variable, button, checkbox and radio button names and id's within the each div are local to the div or are they global?
I suspect they are global throughout the html body and i'll have to add a suffix number to each div's input variable, button, checkbox and radio button names and id's so each div has a unique set of variables.
heres an example:
<div id=div1>
<input type="text" id=text1
<input type="button" id=button1
<input type="checkbox" id=checkbox1
<input type="radio" id=radio1
</div><div id=div2>
<input type="text" id=text2
<input type="button" id=button2
<input type="checkbox" id=checkbox2
<input type="radio" id=radio2
</div><div id=div3>
<input type="text" id=text3
<input type="button" id=button3
<input type="checkbox" id=checkbox3
<input type="radio" id=radio3
</div>