skip to Main Content

Struts action performed by jQuery ajax() Method

In my web-app, after a form validation, perform an Ajax request to my Struts action: $.ajax({ url: "viewResult", type:"POST", data: "TEST", contentType: "application/json; charset=utf-8", success: function(res, textStatus, jqXHR) { ..... Ajax request is successfully performed as well as my execute…

VIEW QUESTION
Back To Top
Search