Guest User

Untitled

a guest
Jan 18th, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(document).ready(function () {
  3.  
  4. $("#submit_btn").on("click", function(){
  5. var username = $("#username").val();
  6. var pass = $("#password").val();
  7.  
  8. $.ajax({
  9. type: "POST",
  10. url: "https://www.magno.pt/areacliente/insert.php",
  11. data: { username: username},
  12. sucess: function () {
  13. }
  14. })
  15. });
  16. });
  17. </script>
Add Comment
Please, Sign In to add comment