jQuery-Mask-Plugin icon indicating copy to clipboard operation
jQuery-Mask-Plugin copied to clipboard

Duplication of events

Open Priorko opened this issue 6 years ago • 1 comments

if you change mask dynamic or add mask twice you will have duplication events focus and change example: https://igorescobar.github.io/jQuery-Mask-Plugin/ (input for "Crazy Zip Code") and from the start we have 2 blur events

plz notice me when/if you fix it

Priorko avatar Sep 25 '18 19:09 Priorko

change from el.off(['input', 'keydown', 'keyup', 'paste', 'drop', 'blur', 'focusout', ''].join('.mask ')); to el.off(['input', 'keydown', 'keyup', 'paste', 'drop', 'blur', 'focusout', 'change', 'focus', ''].join('.mask '));

Priorko avatar Sep 25 '18 19:09 Priorko