I have my div with a right click popup menu:
// Attatch right click event to folder for extra options $(\'#fBox\' + folderID).mousedown(function(event) {
Try this:
$('#fBox' + folderID).bind("contextmenu", function () { alert("Right click not allowed"); return false; });