Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
$(document).ready(function(){
$("#numbonly").keypress(function(event){
keycode = (window.event) ? window.event.keyCode : event.which;
if (keycode != 8 && keycode != 13 && keycode != 43) { // това са BACKSPACE , ENTER и +
if (keycode < 48 || keycode > 57) { return false; }
}
$("#key").html(keycode);
});
});
var tes t= /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;