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.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en">
<head>
<title></title>
<script type="text/javascript">
function initPage()
{
window.document.onkeydown=findKey;
}
function show_textarea()
{
var pole = document.getElementById('text');
pole.value = "";
}
function findKey(evt)
{
var evt = (evt) ? evt : ((window.event) ? event : null);
if(evt.type == 'keydown')
{
var charCode = (evt.charCode) ? evt.charCode : evt.keyCode;
if(charCode==13){
alert("Бутона ЕНТЕР е забранен");
}
}
}
</script>
</head>
<body onLoad="initPage();">
</body>
</html>