Disabling Browser Context Menu On A Raphael Paper
I have a Raphael paper defined as R1 = Raphael(0,0, 800, 600); I want to disable context menu on this paper so that I can catch mouse right click event. I don't have it like Raphae
Solution 1:
obj.node.oncontextmenu = function(){ return false; }
Post a Comment for "Disabling Browser Context Menu On A Raphael Paper"