Top-level menus are displayed when the user clicks a link in the page.
true Boolean: false
Top-level menus are displayed when the user mouses over a link in the page.
integer Boolean: 1
Top-level menus are displayed when the user clicks a link in the page.
integer Boolean: 0
Top-level menus are displayed when the user mouses over a link in the page.
string: "true"
Top-level menus are displayed when the user clicks a link in the page.
string: "false"
Top-level menus are displayed when the user mouses over a link in the page.
JS expression: "getClickStart()"
A custom function that you have created will be called. The return value of this function will be the HM_PG_ClickStart parameter, and all menu trees in the page will comply.
JS expression: "(isMac) ? false : true)"
The complete JS code is included in the parameter declaration. In the above example, HM_PG_ClickStart will be false if a Macintosh is being used and true for all other platforms.
Default
If this parameter is omitted, the relevant Global Parameter value set in the external script is used.
Differences from Version 3 equivalent
The clickStart parameter in Version 3:
was mandatory.
did not accept JS expression values.
Comments
HM_PG_ClickStart sets the user event dynamically. Do not set the link event to onClick.
Links should always have an onMouseOver event. In this way, we minimize HTML page code interventions.