Guest User

Untitled

a guest
Apr 2nd, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. $.post("https://myURL.aspx",
  2. {
  3.  
  4. ServerAction: action2,
  5. username: document.getElementById('username').value,
  6. password: document.getElementById('password').value,
  7. txtFName: document.getElementById('txtFName').value,
  8. txtLName: document.getElementById('txtLName').value,
  9. /* a lot of other key-value pairs here */
  10. },
  11. function(data, status) {
  12.  
  13. console.log(status);
  14. console.log(data);
  15. }
Add Comment
Please, Sign In to add comment