Hello all
on my index page, I'm using this:
$(document).bind('contextmenu',function(e){
e.preventDefault();
});
to prevent displaying of default menu because I'm using my own menus.
Now I'm use some HTML editor and need to "enable" default right menu but only for that editor (textarea).
How to do that?
Thank you.