| Return Type | Function name | Arguments |
|---|---|---|
| void | InitJS_Events | (void) |
Declared and defined in file: hdsConfig.cpp
Function Logic:
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
}