Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html>
<head>
<script language="JavaScript">
function ondalikSayiKontrol( alan ) {
var msg=alan.value;
var w;
var nokta=msg.indexOf( "." );
var ind;
for ( w=0; w<msg.length; w++ ) {
ind=msg.substring(w,w+1);
if ( ind<"0" || ind>"9" ) {
if ( nokta>0 )
if ( w==nokta ) continue;
msg=msg.substring(0,w);
alan.value=msg;
break;
}
}
}
</script>
<title>Deneme</title>
</head>
<body>
<form name="form1" method="post" action="gonder.html">
<input name="Txt01" type="text" value=""
size="30" onKeyUp="ondalikSayiKontrol(this)"><br>
<input type="button" value="Gonder">
<input type="Reset" value="Temizle">
</form>
</body>
</html>