Guest User

Untitled

a guest
Jul 16th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. $("#inputInput").on('keyup', function(event) {
  2. if (event.keyCode === 13) {
  3. if (document.getElementById("introInput").value != null) {
  4. var val = document.getElementById("introInput").value;
  5. alert("test");
  6. }
  7. }
  8. });
Add Comment
Please, Sign In to add comment