Hi,
I am using Spring Forms for my web application. For nested properties, the form tag generates the input elements having id / name in form of .
For example, Person is the command class and Address is contained into its address field then the city element would be,
<input type="text" id="address**.**city" name="address**.**city" />
now, the problem is whenever I try to get its value using jQuery,
$("#address.city").val();
jQuery fails to select any appropriate element !
Please let me know any solution.
Thanks in advance.