jQuery making custom right-click context menu example

jQuery making custom right-click context menu example

In this post we will give you information about jQuery making custom right-click context menu example. Hear we will give you detail about jQuery making custom right-click context menu exampleAnd how to use it also give you demo for it if it is necessary.

jQuery making custom right-click context menu example

contextmenu() is a basically javascript event handler that is used to bind an event handler to the “contextmenu”.

There are many plugins available to use context menu to define custom right click functionality but in this post i will tell you how you can create your own right click functionality using context menu.

Here we will create window like context menu where you can perform many events like edit, update, delele, share, view etc.

Context menu will work on right click mouse operation on selected element.

Positioning of context menu is very important and i will write script to resolve issue of Positioning.

Everyone want it to appear right next to where they clicked.

Let’s start to create custom menu on right click :

  1. <!DOCTYPEhtml>
  2. <htmllang="en">
  3. <head>
  4. <metacharset="utf-8">
  5. <metahttp-equiv="X-UA-Compatible"content="IE=edge">
  6. <metaname="viewport"content="width=device-width, initial-scale=1">
  7. <title>jQuery- making custom right-click context menu example</title>
  8. <linkrel="stylesheet"href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css">
  9. <!-- Styles -->
  10. <linkrel="stylesheet"href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css">
  11. <scriptsrc="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.3/jquery.min.js"></script>
  12. </head>
  13. <body>
  14. <divclass="container"oncontextmenu="event.preventDefault();$('#context-menu').show();$('#context-menu').offset({'top':mouseY,'left':mouseX})">
  15. <tableclass="table table-bordered">
  16. <tr>
  17. <th>Name</th>
  18. <th>Details</th>
  19. </tr>
  20. <tr>
  21. <td>Expert PHP</td>
  22. <td>Provide Online tutorials</td>
  23. </tr>
  24. </table>
  25. </div>
  26. <divclass="context-menu"id="context-menu"style="display:none;position:absolute;z-index:99">
  27. <ul>
  28. <li><ahref="#"><iclass="fa fa-eye"></i> View</a></li>
  29. <li><ahref="#"><iclass="fa fa-share-alt"></i> Share</a></li>
  30. <li><ahref="#"><iclass="fa fa-trash"></i> Delete</a></li>
  31. <li><ahref="#"><iclass="fa fa-share fa-fw"></i> Move</a></li>
  32. <li><ahref="#"><iclass="fa fa-files-o"></i> Copy</a></li>
  33. </ul>
  34. </div>
  35. </body>
  36. </head>
  37. </html>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>jQuery- making custom right-click context menu example</title> 
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css">
    <!-- Styles -->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css">
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.3/jquery.min.js"></script>   
</head>
<body>
<div   oncontextmenu ="event.preventDefault();$('#context-menu').show();$('#context-menu').offset({'top':mouseY,'left':mouseX})">
<table >   
    <tr>
        <th>Name</th>
        <th>Details</th>          
    </tr>
    <tr>
        <td>Expert PHP</td>
        <td>Provide Online tutorials</td>
    </tr>
 </table>
 </div>
<div  id="context-menu" style="display:none;position:absolute;z-index:99">
    <ul>
      <li><a href="#"><i ></i> View</a></li>       
      <li><a href="#"><i ></i> Share</a></li>       
      <li><a href="#"><i ></i> Delete</a></li>       
      <li><a href="#"><i ></i> Move</a></li>       
      <li><a href="#"><i ></i> Copy</a></li>       
    </ul>
</div>
</body>
</head>
</html>


Add script for Positioning and hide context menu

  1. <script>
  2.     var mouseX;
  3.     var mouseY;
  4.     $(document).mousemove(function(e){
  5.      mouseX = e.pageX;
  6.      mouseY = e.pageY;
  7.     });
  8.     $(document).bind("mousedown",function(e){
  9. // If the clicked element is not the menu
  10. if(!$(e.target).parents(".context-menu").length >){
  11. // Hide it
  12. $(".context-menu").hide(100);
  13. }
  14. });
  15. </script>
<script>
	var mouseX;
	var mouseY;
	$(document).mousemove(function(e) {
	   mouseX = e.pageX; 
	   mouseY = e.pageY;
	});  
	$(document).bind("mousedown", function (e) {
    // If the clicked element is not the menu
    if (!$(e.target).parents(".context-menu").length > 0) {    
        // Hide it
        $(".context-menu").hide(100);
    }
  });
</script>


Add style to context menu

  1. <style>
  2. /*right click*/
  3. .context-menu ul{
  4. z-index:1000;
  5. position:absolute;
  6. overflow:hidden;
  7. border:1pxsolid#CCC;
  8. white-space:nowrap;
  9. font-family:sans-serif;
  10. background:#FFF;
  11. color:#333;
  12. border-radius:5px;
  13. padding:;
  14. }
  15. /* Each of the items in the list */
  16. .context-menu ul li {
  17. padding:8px12px;
  18. cursor:pointer;
  19. list-style-type:none;
  20. }
  21. .context-menu ul li:hover {
  22. background-color:#DEF;
  23. }
  24. </style>
 <style>
/*right click*/
  .context-menu ul{ 
    z-index: 1000;
    position: absolute;
    overflow: hidden;
    border: 1px solid #CCC;
    white-space: nowrap;
    font-family: sans-serif;
    background: #FFF;
    color: #333;
    border-radius: 5px;
    padding: 0;
}
/* Each of the items in the list */
.context-menu ul li {
    padding: 8px 12px;
    cursor: pointer;
    list-style-type: none;
}
.context-menu ul li:hover {
    background-color: #DEF;
}
 </style>

Show Demo

Hope this code and post will helped you for implement jQuery making custom right-click context menu example. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

Leave a Comment

Your email address will not be published. Required fields are marked *

9  +  1  =  

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US