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 sagWas() {
alert("bla");
}
var sagWas = function() {
alert("bla");
};
document.getElementById("blub").onclick = sagWas;
Dazu muss sie aber nicht anonym sein. Der Funktionname geht natürlich auch.Gilles schrieb:So hast du die Funktion nun einer Variable zugewiesen. Und diese kannst du dann auch einem EventHandler geben