Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function()
  2. {
  3.     var un = $("#username").value();
  4.     var pw = $("password").value();
  5.  
  6.     $("a").click(function(){
  7.         $.ajax({
  8.             type: 'POST',
  9.                         url: 'sifredegistir.php',
  10.             data: '{ "username":"' + un + '", "password":"' + pw+ '" }',
  11.  
  12.                         success: function (result) {
  13.                                 alert(result.d);
  14.                             }
  15.  
  16.         });
  17.     });
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement