This is an old revision of the document!


Javascript Snippets

Functions

  • Run a function but only if defined
    • if (typeof processAfterLogin == 'function') { 
        processAfterLogin(); 
      }