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.
Hallo,
I want to call myFun() from another function the problem is following construct:
When I try it with myFun() I jsut get error:
Cannot read property 'myFun' of undefined
Can someone help me with this Problem?
Greetings
HTML:(function() { function myFun() { } })();
(function(window) {
window.myFun = function () {
}
})(window);
function anotherFunction () {
myFun();
}