CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Language: JavaScript

ajax form sample

136 Views
Copy Code Show/Hide Line Numbers
function SaveComments() {
    // ID of the button, not a <input type="submit" />
    // on page load...
    // $('#id_of_button_button_save_comments').click(function() { SaveComments(); });
    
    alert('Saving comments...');
    var commoptions = { 
        success: function(responseText) 
        {
          alert('Comment saved. Returned: '+responseText);
          // Inject the response somewhere
          // $('#id_of_response_div').html(responseText);
        }
  }; 
    $('#id_of_form_you_are_submitting').ajaxSubmit(commoptions);
}
by Shaun Kester
  November 23, 2009 @ 11:36am

Add a comment


Report Abuse
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate