Guest User

Untitled

a guest
Aug 24th, 2016
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <form id="form">
  2. <input type="text" class="form-control" name="number />
  3. <button class="btn" type="button" onclick="fun();>Принять</button>
  4. </form>
  5.  
  6. function fun() {
  7. var str = document.getElementById("form").value;
  8. alert(str);
  9. }
Add Comment
Please, Sign In to add comment