Guest User

Untitled

a guest
Sep 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $(document).ready(function(){
  2. $("#enter_number").submit(function(e) {
  3. e.preventDefault();
  4. initiateCall();
  5. });
  6. });
  7.  
  8. function initiateCall() {
  9. $.post("call.php", { phone_number : $("#phone_number").val() },
  10. function(data) { showCodeForm(data.verification_code); }, "json");
  11. checkStatus();
  12. }
  13.  
  14. function showCodeForm(code) {
  15. $("#verification_code").text(code);
  16. $("#verify_code").fadeIn();
  17. $("#enter_number").fadeOut();
  18. }
Add Comment
Please, Sign In to add comment