showing results for - "form submit callback javascript"
Lyna
18 Aug 2017
1$('#myForm')
2    .ajaxForm({
3        url : 'myscript.php', // or whatever
4        dataType : 'json',
5        success : function (response) {
6            alert("The server says: " + response);
7        }
8    });