I have resolved a biggest challenge of web development and developed client side context menu(Right Click Menu) plug-in. Following are some major features of the same:

Example for integration on a object.

  1. <script>
  2. $(function () {
  3. $(“#target”).contextmenu({
  4. items:["Download","split","Move","Copy"],
  5. callback: function (data) {
  6. //Call custom action method based on item clicked that will come under data
  7. alert(data);
  8. }
  9. });
  10. });
  11. </script>
menu
On above example target is the name of HTML object and split is for split line. Further please find all file enclosed here and let me know in case you have any query.