The code of the text field is:
<s:iterator value="paramSimple" var="param" status="iteratorStatus">
<tr>
<td>
<input type="text" text_id="<s:property value="#iteratorStatus.index" />" value= "<s:property value=" #param.value.split(':')[1] " />"/>
</td>
</tr>
</s:iterator>
How do i access the value of the text field in JS function?
I tried using
$("input[text_id='1']")
but it shows the input element instead of the value