Hi,
you can disable the menu
$(document).bind("contextmenu", function(e) {
return false;
});
you can show a div
$(document).bind("contextmenu", function(e) {
$('#menu').css({
top: e.pageY+'px',
left: e.pageX+'px'
}).show();
return false;
});
but is it possible only to add an entry to the rightclick contextmenu?
Thanks in advance!
Peter