jquweryu form post code example
Example 1: when a form is subbmited jquery
$("#myform").submit(function(e) {
})
Example 2: post jquery
$.post( "ajax/test.html", function( data ) {
$( ".result" ).html( data );
});
$("#myform").submit(function(e) {
})
$.post( "ajax/test.html", function( data ) {
$( ".result" ).html( data );
});