7

Possible Duplicate:
css rule to disable text selection highlighting

On my homepage i have a script, which shows a clock at the top of my homepage. I dont like the fact that i can choose this clock with my mouse, see the picture.

So i want to know if there is a way to completely prevent an html element from being selected by the mouse.

Community
  • 1
  • 1
71GA
  • 1,132
  • 6
  • 36
  • 69

1 Answers1

14

CSS can do that.

-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
Tom van der Woerdt
  • 29,532
  • 7
  • 72
  • 105