Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Mar 5th, 2012  |  syntax: jQuery  |  size: 0.25 KB  |  hits: 53  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. $("form").submit(function(){
  2.  
  3.     var_form_data = $(this).serialize();
  4.  
  5.     $.ajax({
  6.        type: "POST",
  7.        url: "write.php",
  8.        data: var_form_data,
  9.        success: function(msg){
  10.          alert( "Data Saved: " + msg );
  11.        }
  12.     });
  13.  
  14. });