Hi,
I have the following jQuery code that stops the user selecting text in a table element.
$('table').live("selectstart", function(e) {
e.preventDefault();
});
This works in IE, but not in Firefox. How can I get this to work in Firefox?
Thanks