I have my div with a right click popup menu:
// Attatch right click event to folder for extra options $(\'#fBox\' + folderID).mousedown(function(event) {
There’s many Javascript snippets available to disable right-click contextual menu, but JQuery makes things a lot easier:
$(document).bind("contextmenu",function(e){ return false; }); });