Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<input type="button" onclick="change();" value="+1">
<script type="text/javascript">
function change()
{
1
}
</script>
<input type="button" onclick="change();" value="+1">
<script type="text/javascript">
var count = 0;
function change()
{
count++;
document.write(count);
}
</script>