this is the problem:
I’m using javascript and JQuery (not UI) to drag nested objects in my web page.
to disable the text selecting I have to return FALSE from the mousedown handler, but this disable also the event bubbling. But I need event bubbling…
What can I do??
thanks
this is the problem: I’m using javascript and JQuery (not UI) to drag nested
Share
A partial solution for disabling text selection is css user-select:
Although, I don’t think it works in IE.
Another thought might be (if your layout allows) to overlay your text with an invisible div. This should prevent text selection.