I have my div with a right click popup menu:
// Attatch right click event to folder for extra options $(\'#fBox\' + folderID).mousedown(function(event) {
You can disable context menu on any element you want:
$('selector').contextmenu(function() { return false; });
To disable context menu on the page completely (thanks to Ismail), use the following:
$(document).contextmenu(function() { return false; });