I can disable the content selection of any webpage using the code below which works well.
<div
style="-moz-user-select: none; -webkit-user-select: none; -ms-user-select:none; user-select:none;-o-user-select:none;"
unselectable="on"
onselectstart="return false;"
onmousedown="return false;">
Cannot select me
</div>
Image showing text selection is given below :
My question is:
- How can i disable blue background and highlight only the text that i select from any webpage?
Second part of the question moved to ux.stackexchange.