Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

get response from form jquery

$('#myForm')
    .ajaxForm({
        url : 'myscript.php', // or whatever
        dataType : 'json',
        success : function (response) {
            alert("The server says: " + response);
        }
    })
;
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #response #form #jquery
ADD COMMENT
Topic
Name
3+5 =