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.
Try this:
$("#address\\.city").val();
From the documentation:
Note: if you wish to use any of the meta-characters described above as a literal part of a name, you must escape the character with two backslashes (
\
). For example:
#foo\\:bar
#foo\\[bar\\]
#foo\\.bar
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With