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. $(document).ready(function() {
  2. var input = document.getElementById('input');
  3.  
  4. if (input) {
  5. input.addEventListener('touchstart' /*'mousedown'*/, function(e) {
  6. e.stopPropagation();
  7. }, false);
  8. }
  9. });
Add Comment
Please, Sign In to add comment