kseosru,
Если вы используете jquery-maskedinput, то там можно назначать функцию, которая вызывается после заполнения маски
Цитата:
|
Optionally, if you would like to execute a function once the mask has been completed, you can specify that function as an optional argument to the maskedinput method.
jQuery(function($){
$("#product").mask("99/99/9999",{completed:function(){alert("You typed the following: "+this.val());}});
});
|