Guest User

Untitled

a guest
Jul 19th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. var x=new XMLHttpRequest();
  2. x.onreadystatechange=function()
  3. {
  4. if (x.readyState == 4 && x.status == 200)
  5. {
  6. var msg=x.responseText.trim();
  7. if(msg=="Thank you for booking and Have a nice Journey!!!")
  8. {
  9.  
  10.  
  11.  
  12. alert("Successfully submitted");
  13.  
  14. location.reload();
  15. }
  16. else
  17. {
  18. $.GWSnackbar({id:"snackbar",type:"default",message:"Sorry...Try again"});
  19. }
  20. }
  21. }
Add Comment
Please, Sign In to add comment