Skip to content

Instantly share code, notes, and snippets.

@jookyboi
Last active October 29, 2017 15:25
Show Gist options
  • Save jookyboi/6610064 to your computer and use it in GitHub Desktop.
Save jookyboi/6610064 to your computer and use it in GitHub Desktop.
$(document).bind("contextmenu", function(event) {
event.preventDefault();
$("<div class='custom-menu'>Custom menu</div>")
.appendTo("body")
.css({top: event.pageY + "px", left: event.pageX + "px"});
});
.custom-menu {
z-index:1000;
position: absolute;
background-color:#C0C0C0;
border: 1px solid black;
padding: 2px;
}
$(document).bind("click", function(event) {
$("div.custom-menu").hide();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment