Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. $(document).on('focusin', '#testInput', function() {
  2. console.log('in')
  3. });
  4.  
  5. $(document).on('focusout', '#testInput', function() {
  6. console.log('out')
  7. });
  8.  
  9. $(document).on('touchstart', '#deleteButton', function() {
  10. console.log('touchs')
  11. $('#testInput').val('');
  12. });
  13.  
  14. $(document).on('touchend', '#deleteButton', function() {
  15. console.log('touchs end')
  16. $('#testInput').focus();
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement