Guest User

Untitled

a guest
Jun 25th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(function(){
  2.     $('form[name=update_stuff]').on("submit", function(e){
  3.         e.preventDefault();
  4.    
  5.         $.ajax({
  6.             url: 'process.php',
  7.             type: 'POST',
  8.             data: $(this).serialize(),
  9.             success: function(data){
  10.                 $('#emptydiv').html(data);
  11.             }
  12.         });
  13.        
  14.     });
  15. });
Add Comment
Please, Sign In to add comment