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.
function test1() {
window.setTimeout("alert('1')",1000)
return true
}
alert(test1())
<script type="text/javascript">
function test1() {
window.setTimeout("alert(1)",1000);
}
test1()
</script>
/** Ladezeit **/
stimer = new Date()
function cal(){
etimer = new Date()
diff = etimer.getTime() - stimer.getTime()
newstatus = "Load time: " + diff + " Msec";
document.title = newstatus;
}
...
<Body onload="cal()">