Create context menus (right-click menus) for any element with jquery

one
two

Build Status

Description

Create Chrome-styled context menus (right-click menus) for any element.

Example usage

$('#one').chromeContext({
    items: [
        {
            title: 'Hello',
            onclick: function () { console.log('hello.'); }
        },
        { separator: true },      
        {
            title: 'World',
            onclick: function () { console.log('world.'); }      
        }    
    ]  
});