Getting the value of a html:text property in javascript function
Hi all,
I am using struts framework and I need to get a value in a textfield both in java part and javascript part
<td><html:text property="identityNumber"> </td>
I dont know how can I reach the value user entered in that field in the javascript function
function verifyID(){
var identityUserEntered = ?
alert(identity);
}

