Return TypeFunction nameArguments
voidInitJS_Events(void)

Declared and defined in file: hdsConfig.cpp

Function Logic:

0:START 1:_hzGlobal_JS_Events.Count() 2: No text 3:S hzMapS::Insert S hzMapS::Insert S hzMapS::Insert S hzMapS::Insert S hzMapS::Insert S hzMapS::Insert S hzMapS::Insert 4: No text

Function body:

void InitJS_Events (void)
{
   if (_hzGlobal_JS_Events.Count())
       return ;
   hzString    S ;
   uint32_t    n = 0;
   S = "onpageshow" ;  _hzGlobal_JS_Events.Insert(S, n++) ;
   S = "onchange" ;    _hzGlobal_JS_Events.Insert(S, n++) ;    //   An HTML element has been changed
   S = "onclick" ;     _hzGlobal_JS_Events.Insert(S, n++) ;
   S = "onmouseover" ; _hzGlobal_JS_Events.Insert(S, n++) ;
   S = "onmouseout" ;  _hzGlobal_JS_Events.Insert(S, n++) ;    //   The user moves the mouse away from an HTML element
   S = "onkeydown" ;   _hzGlobal_JS_Events.Insert(S, n++) ;    //   The user pushes a keyboard key
   S = "onload" ;      _hzGlobal_JS_Events.Insert(S, n++) ;    //   The browser has finished loading the page
}