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.
var die_variable = "Text";
window.alert(die_variable);
window.onload = function() {
die_variable+= ".";
try {
window.onclick = mein_klick;
} catch(e) {
document.onclick = mein_klick;
}
}
function mein_klick(event) {
window.alert(die_variable);
}