I am new to Spring MVC. I have a form like this,
and a co
You need to post the data. The way I typically do it is using the following.
var str = $("#myForm").serialize(); $.ajax({ type:"post", data:str, url:"/myaction.htm", async: false, dataType: "json", success: function(){ alert("success"); } });