Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function addInputEventListener(query, callback) {
  2. $(query)
  3. .on('input', callback)
  4. .on('compositionstart', function() {
  5. $(this).off('input', callback).one('compositionend', callback)
  6. })
  7. .on('compositionend', function() {
  8. $(this).on('input', callback)
  9. });
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement