Привет!
Есть такая функция
filterInput: function (e, regexp) {
e=e || window.event;
var target=e.target || e.srcElement;
if (target.tagName.toUpperCase()=='INPUT') {
if (e.which<32 || e.ctrlKey || e.altKey) return true;
var char=String.fromCharCode(e.which);
if (!regexp.test(char)) return false;
}
return true;
},
Как можно сделать такой же, но который будет срабатывать при копипасте?