Advertisement
Guest User

Untitled

a guest
Oct 2nd, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <script src="http://code.jquery.com/jquery-1.9.0.js"></script>
  2. <script src="http://code.jquery.com/jquery-migrate-1.0.0.js"></script>
  3.  
  4. <form method='post'>
  5. <input type="text" name="id" id="id" placeholder="mail adress" />
  6. <input type="text" name="pass" id="pass" placeholder="password" />
  7. <input type="submit" name="login" id="login" value="login" />
  8. </form>
  9.  
  10. <script type='text/javascript'>
  11. $('#id').on('input', function () {
  12. alert('text changed');
  13. });
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement