Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

non-selectable text

Status
Not open for further replies.

joelmac

Programmer
Jun 4, 2002
92
CA
hi there,

Is it possible to make text in a table cell non-selectable. Really what I'm trying to do is make the mouse curser stay an arrow or a hand instead of the I-beam. Can I do that?

Thanks,

________________________
JoelMac
 
body {
cursor: default;
}

use that style and all your cursor will always stay an arrow or you can change it to

cursor: pointer;
cursor: hand;

you need that for NN and IE if you want the hand

<Signature>
Sometimes the Answer You Are LOOKING for can be FOUND BY SEARCHING THE FAQ'S @&%$*#!!!
</Signature>
 
You could try...

<a onSelect=&quot;return false;&quot;>
Your Text Here...
</a>

Hope this helps.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top