Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <fieldset>
  2. <h2 class="fs-title">Enter Your Number</h2>
  3. <h3 class="fs-subtitle">This is step 1</h3>
  4. <input type="text" name="email" placeholder="Phone number" id="PhoneField" />
  5. <input type="button" name="next" class="next action-button" value="Next" id="SendPhone" />
  6.  
  7. $(document).ready(function() {
  8. var phoneField = $("#PhoneField").val();
  9. $("#SendPhone").click(function () {
  10. alert(phoneField);
  11. })
  12. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement