Guest User

Untitled

a guest
Apr 9th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $(document).ready( function ()
  2. {
  3. $("#LoginButton").click( function ()
  4. {
  5. username = $("#username").val();
  6. password = $("#password").val();
  7.  
  8. $.ajax({
  9. type: "GET",
  10. url: "requests/login.rhtml",
  11. data: "username=" + username + "&password=" + password,
  12. success: function (reply) {
  13. alert("Blah!!!!!"); },
  14. });
  15. });
  16. });
Add Comment
Please, Sign In to add comment