Please refer the below link.
How to disable text selection highlighting using CSS?
The above link is useful to disable selection while dragging. code snippet.
.unselectable {
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
user-select: none;
}
but i don't want to use css concept here. i want to set these attributes for particular element via jquery. how can i do this ?
Thanks,
Siva