Hallo.
if (window.foo) {
alert('foo() exists.');
}
Kleine Erweiterung:
~~~javascript
if (window.foo && typeof(window.foo) == 'function') {
alert('foo() exists and is a ' + typeof(window.foo));
}
Eine global deklarierte Variable foo wird ja schließlich ebenfalls dem window-Objekt untergeordnet.
Einen schönen Sonntag noch.
Gruß, Ashura