Plugins

The plugins site is currently in development.

We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.

context menu


wdContextMenu Context Menu Plugin

wdContextMenu is is very lightweight jquery plugin for right click menu.

  • Item specific. Context menu for specific area
  • Dynamical disabled menus/items

Custom browser context menu

Usual right click menu of browser is replaced with a menu created in div and css. This is a beta release. Tested on 1.3 & 1.4 version
just called on a 'div' element with arguments of menu link names and urls i.e $(element_name).bmenu({'menu_name','url'});

jquery Very Simple Context Menu

jQuery Very Simple Context Menu

Their is 3 important file you need to include in your application
1) vscontext.jquery.js (Context Menu Logic File).
2) vscontext.css (Context Menu CSS File).
3) A file which store your click function written on your menu items href attribute, (here i am using menu_action.js).

How to build context menu

Step 1 : Include files

1) jquery.js
2) vscontext.jquery.js
3) menu_action.js (can use your own file name which have menu items action functions)
4) css/vscontext.css

Step 2 : Create area where you want to build context menu.

<div id="context">This is the testing block.</div>

Step 3 : Build Menu item list with action code

jQuery Context menu script

This jQuery script lets you associate a multi-level context menu to any element on the page, so right clicking within the element activates the menu. The default context menu of the browser is suppressed as a result. A different context menu can be added to different elements on the page, such as one for the document as a whole, another for just a DIV on the page etc.

jjmenu - context menu jquery plugin

jjmenu is powerfull context menu plugin with ajax support.

  • Supports both left- and right- click event (warining: right click event is not supported by Opera)
  • Static and AJAX menu items
  • Static and AJAX submenus
  • Flexible event model, supports ajax and custom user actions
  • Easy to customize with CSS selectors
  • Dynamic variables in in-menu URLs, such as ID (for example /get.php?id=#id#)

JeeGoo Context Menu

Jeegoocontext is a jQuery plugin that allows for multiple custom context menus (pop-up menus) to exist on a single page. The plugin is able to transform any unordered list appended to the body into a multi-level, intelligently positioned styled context menu via a single call.

Simple CSS Context Menu

simple 8 line jquery live script to show/hide pure css context menu.

ConMenu Context menu

Truly context sensitive right click menu.

Most other menus only allow for fixed options on a single selector.

With this menu, options can overlap on the selectors that they apply to.

The action (js function) for each choice on the menu is passed the element that the menu was generated on.

sample call:

$.conmenu({
  selector:".node",
  choices:[{
    label:"Edit",
    action:function(div){
      var nid = $(div).attr("id").substring(5);
      window.location.href = "/node/" + nid + "/edit";
    }
  }]
});

This example shows a 'Edit' option when you right click on any element that has a class of 'node'. When you click on 'Edit', it would take you the the new url using the 6th character from the ID of the element right-clicked on.

Open to input and recommendations!

ContextMenu Plugin - Simple but powerful: themes, animations, many options, highly extensible

This plugin enables you to display a custom context menu on right click in browsers that support it. This is commonly used in web applications that are simulating desktop behavior or wish to add advanced functionality for their users.

There are other context menu plugins - so why did I write one? This one is extremely configurable, customizable, and extensible. If any part of the default behavior is not exactly what you need, it is very simple to override the default functionality without changing the plugin code. Several themes are included so you can display the context menus in a style that you pick. Writing your own themes is very simple. Understanding and customizing the CSS is straight-forward and documented.

There are many examples showing off lots of the functionality here. The best way to see what this plugin can do is to try it out!
http://www.javascripttoolbox.com/lib/contextmenu/

jQuery Context Menu

jQuery Context Menu is a context menu plugin for jQuery. It was designed to make implementing context menu functionality easy and requires minimal effort to configure.

There is another context menu for jQuery written by Chris Domigan. These two projects are completely unrelated and no source code was shared from Chris' project.

Why reinvent the wheel? The goal of this plugin is to streamline the way actions are binded to menu items and to use 100% CSS for styling. Keyboard shortcuts were added for navigating the menu once it's open, and there are five methods to allow you to control and clean-up context menus on the fly.