Advertisement
Guest User

Untitled

a guest
Sep 16th, 2014
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function() {
  2.    
  3.         $('#submit').click(function() {
  4.        
  5.         $.ajax({
  6.             url: 'http://ofcourse.oru.se/~IK2009/contactform/contact_form.php',
  7.             type: 'GET',
  8.             success: function(msg) {
  9.                 alert(msg);
  10.             },
  11.             error: function() {
  12.                 alert('Nu var det något som gick fel :(');
  13.             }      
  14.         });
  15.     });
  16.  
  17.  
  18.  
  19.  
  20.  
  21. }
  22. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement