Guest User

Untitled

a guest
May 28th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. function processJSON(data) {
  2. // 'data' is the json object returned from the server
  3. if (data.success) {
  4. alert('Your request was submitted, thank you');
  5. } else {
  6. alert('There was a problem');
  7. }
  8. }
Add Comment
Please, Sign In to add comment