Hi. I have this code :
<form onSubmit="return checkTL();" method='POST' action='./index.php?general=example3' name='addtl' >
<div class="sideon" id="sideline0">
<input type="text" id="inputside0" name="sides[]" class="inputTLS" maxlength="50" />
</div>
<div class="sideoff" id="sideline1">
<input type="text" id="inputside1" name="sides[]" class="inputTLS" maxlength="50" />
</div>
<div class="sideoff" id="sideline2">
<input type="text" id="inputside2" name="sides[]" class="inputTLS" maxlength="50" />
</div>
<div class="sideon" id="sideline3">
<input type="text" id="inputside3" name="sides[]" class="inputTLS" maxlength="50" />
</div>
<input type="submit" value="Send" name="submit" />
</form>
using the checkTL() function, i need to send to the server (for example) only the input value into div with class "sideon". So, in the example, i need to get (server side) only the value of inputside0 and inputside3. How is possible this? cheers