wahsaga: Existiert eine Funktion?

Beitrag lesen

hi,

if (window.foo && typeof(window.foo) == 'function')

Und nun noch etwas kürzer:

if (typeof(foo) == 'function')

Und da typeof ein Operator ist, geht's auch noch etwas kürzer - nämlich ohne die Klammern:
if (typeof foo == 'function')

gruß,
wahsaga

--
/voodoo.css:
#GeorgeWBush { position:absolute; bottom:-6ft; }