Table of Contents
Javascript Snippets
Functions
Javascript Snippets
Functions
Run a function but only if defined
if
(
typeof
processAfterLogin
==
'function'
)
{
processAfterLogin
(
)
;
}