/ Published in: jQuery
                    
                                        
simple ajax submit (example is from jquery doc)
                
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
$.ajax({
url: "test.html",
context: document.body,
success: function(){
$(this).addClass("done");
}
});
Comments
 Subscribe to comments
                    Subscribe to comments
                
                