oncontextmenu doesn't prevent the browser's context menu from appearing
when i right click
i have the following short code
<body oncontextmenu="return false">
<p class="info">
Books are the world of information. As said the books are the best
friends. A wise
man always has a library of several books</p>
<ul id="contextmenu">
........
js file
$('.info').mousedown(function(event){
if(event.button==2){
$('#contextmenu').show();
}
}
I want the browser's context menu not to appear as default along with our
context menu when i right click on .info.
oncontextmenu="return false"
doesn't work
No comments:
Post a Comment