Advertisement
Sonic3R

Untitled

Aug 2nd, 2011
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $("#recovery_submit").click(function()
  2.                 {
  3.                     $(this).hide();
  4.                     $("#loading_recovery").show();
  5.                     var usermail=$("#recovery_email").val();
  6.                     $.ajax({
  7.                     type:"POST",
  8.                     url:"recovery.php",
  9.                     data : "email_problem="+usermail,
  10.                     success:function(response)
  11.                     {
  12.                         $("#status_recovery").html(response);
  13.                         $("#loading_recovery").hide();
  14.                     }
  15.                     });                
  16.                 });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement