How do I select the value of each one of these?
Im just trying to get the value of input fields with a class assigned.
The input fields are added through a jquery append.
Im using:
$(".CC input").each(function(i,v) {
<div id="CC" style="display:block">
<input type="text" name="SCCC" class="CC" size="50" maxlength="50">
<br><input type="text" name="SCCC" class="CC" id="ID1" value="XXX" size="50" maxlength="50">
<br><input type="text" name="SCCC" class="CC" id="ID2" value="YYY" size="50" maxlength="50">
</div>