1.5 KiB
1.5 KiB
currentMenu |
---|
plugin-commands |
Plugin commands
- Disable a contextMenu trigger
- Enable a contextMenu trigger
- Manually show a contextMenu
- Manually hide a contextMenu
- Unregister all contextMenus
Disable a contextMenu trigger
disable contextMenu to be shown on specified trigger elements
$(".some-selector").contextMenu(false);
Enable a contextMenu trigger
enable contextMenu to be shown on specified trigger elements
$(".some-selector").contextMenu(true);
Manually show a contextMenu
show the contextMenu of the first element of the selector (position determined by determinePosition):
$(".some-selector").contextMenu();
$(".some-selector").contextMenu({x: 123, y: 123});
Manually hide a contextMenu
hide the contextMenu of the first element of the selector:
$(".some-selector").contextMenu("hide");
Unregister contextMenu
To unregister / destroy a specific contextMenu:
$.contextMenu( 'destroy', selector );
selector expects the (string) selector that the contextMenu was registered to
Unregister all contextMenus
To unregister / destroy all contextMenus:
$.contextMenu( 'destroy' );