I've been searching high and low for a way to do this but haven't had much luck so I hope you guys can help.
I'm after a bit of JavaScript that will prevent text selection and will prevent the context menu being shown (when you right click). This is easy enough to do with IE but I'm having trouble getting it to work with other browsers.
For example with IE the following will work..
Code: Select all
document.onselectstart = function () { return false }
document.oncontextmenu = function () { return false }