Create Chrome-styled context menus (right-click menus) for any element.
Create Chrome-styled context menus (right-click menus) for any element.
$('#trigger').chromeContext({
items: [
{
title: 'Hello',
onclick: function () { console.log('hello.'); }
},
{ separator: true },
{
title: 'World',
onclick: function () { console.log('world.'); }
}
]
});
See the demo directory in the repository or see the online demo.