I have trouble with using jQuery Masked Input Plugin text typing successfully works, but if I paste text into masked textbox - I cannot catching Completed event.
Example from plugin site:
<script type="text/javascript">
jQuery(function ($) {
$("#testtext").mask("99/99/9999", { completed: function () {
alert("You typed the following: " + this.val());
} });
});
</script>
Anyone done similar?