Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<title>Beispiel</title>
<script type="text/javascript">
<!--
maxZ=new Array(120,400,200);
function check(fld,Z){
z=fld.value.length;
if(z>maxZ[Z]){
fld.value=fld.value.substr(0,maxZ[Z]);
fld.focus();
}
document.getElementById('zaehler'+Z).innerHTML=maxZ[Z]-fld.value.length;
}
function init(){
for (var i=0;i<maxZ.length;i++){
document.getElementById('zaehler'+i).innerHTML=document.getElementById('zaehler'+i+'_b').innerHTML=maxZ[i]
}
}
//-->
</script>
</head>
<body onload="init()">
<form name="form1" action="#">
<p><textarea name="text1" onkeyup="check(this,0)"></textarea>
<p><span id="zaehler0">0</span><span> von </span><span id="zaehler0_b"></span> erlaubten Zeichen übrig.</p>
<p><textarea name="text1" onkeyup="check(this,1)"></textarea>
<p><span id="zaehler1">0</span><span> von </span><span id="zaehler1_b"></span> erlaubten Zeichen übrig.</p>
<p><textarea name="text1" onkeyup="check(this,2)"></textarea>
<p><span id="zaehler2">0</span><span> von </span><span id="zaehler2_b"></span> erlaubten Zeichen übrig.</p>
</form>
</body>
</html>