How to make all selected options enabled in select element using jQuery
$(document).ready(function() {
$("input[type=text]").keypress(function (e) {
if (e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57)) {
alert('Only number are allowed')
return false;
}
});
});
Subscribe to the Email Newsletter