Your Menus, Your Rules.
Tired of the boring default right-click menu? QuickCTX is your zero-dependency key to unlocking beautiful, fully-customizable context menus that behave exactly how you want.
A right-click on the box will reveal the magic.
const heroMenu = new QuickCTX();
ctxManager.createAndBindMenu({
menuId: "hero",
selector: "#hero-box",
structure: [
{ label: "Say Hello", action: () => showToast("Hello! 👾"), icon: "fas fa-hand" },
{ label: "✨ Magic Trick", action: launchConfetti },
MenuCommand.Separator(),
{ label: "Get Started", action: () => goToSection("#submenus"), icon: "fas fa-rocket" },
]
});