Guest User

Untitled

a guest
Sep 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. function checkStatus() {
  2. $.post("status.php", { phone_number : $("#phone_number").val() },
  3. function(data) { updateStatus(data.status); }, "json");
  4. }
  5.  
  6. function updateStatus(current) {
  7. if (current === "unverified") {
  8. $("#status").append(".");
  9. setTimeout(checkStatus, 3000);
  10. }
  11. else {
  12. success();
  13. }
  14. }
  15.  
  16. function success() {
  17. $("#status").text("Verified!");
  18. }
Add Comment
Please, Sign In to add comment