JQuery takes the value of the id of

  • 2020-03-30 03:01:03
  • OfStack

In the form: id = "pojo.name" with jQuery value. If $("#pojo.name").val() is not available directly. The correct method is:
 
$("[id='pojo.name']").val(); 

Related articles: