var phone = $('#webcallbackinput').val();
phone = phone.replace("", "_");
if(phone.length >= 11) {
$('#callme').removeAttr('disabled');
}
The keypress event is sent to an element when the browser registers keyboard input. This is similar to the keydown event, except that modifier and non-printing keys such as Shift, Esc...