vote up 4 vote down star
1

I'm building an html UI with some text elements, such as tab names, which look bad when selected. Unfortunately, it's very easy for a user to double-click a tab name, which selects it by default in many browsers.

I might be able to solve this with a javascript trick (I'd like to see those answers, too) -- but I'm really hoping there's something in css/html directly that works across all browsers.

flag

And this is a problem only because it looks bad? – Jon Limjap Sep 16 '08 at 4:44

13 Answers

vote up 6 vote down check

Absolutely position divs over the text area with a z-index higher and give these divs a transparent gif background graphic.

Note after a bit more thought - You'd need to have these 'covers' be linked so clicking on them would take you to where the tab was supposed to, which means you could/should do this with the anchor element set to display:box, width and height set as well as the transparent background image.

link|flag
That's a very simple and elegant hack. Great! – qwertyuu Sep 17 '08 at 7:37
This is what flickr does – Harry Mar 21 '09 at 3:50
vote up 7 vote down
<script type="text/javascript">

/***********************************************
* Disable Text Selection script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code

***********************************************/


function disableSelection(target){

if (typeof target.onselectstart!="undefined") //IE route

    target.onselectstart=function(){return false}

else if (typeof target.style.MozUserSelect!="undefined") //Firefox route

    target.style.MozUserSelect="none"

else //All other route (ie: Opera)

    target.onmousedown=function(){return false}
    target.style.cursor = "default"

}



//Sample usages
//disableSelection(document.body) //Disable text selection on entire body
//disableSelection(document.getElementById("mydiv")) //Disable text selection on element with id="mydiv"


</script>

EDIT

Code apparently comes from http://www.dynamicdrive.com

link|flag
vote up 6 vote down

Try this:

<div onselectstart="return false">some stuff</div>

Simple, but effective... works in current versions of all major browsers.

link|flag
1  
This doesn't work for me in firefox. – Tyler Sep 4 at 21:04
This is IE only attribute. which makes it redundant. – vsync Nov 17 at 8:03
vote up 3 vote down

For firefox you can apply the CSS declaration "-moz-user-select" to "none" Check out their docs: http://developer.mozilla.org/En/CSS/-moz-user-select

It's a "preview" of the future "user-select" as they say, so maybe opera or webkit-based browsers will support that. I also recall finding something for IE, but don't remember what :).

Anyway, unless it's a specific situation where text-selecting makes some dynamic functionality fail, you shouldn't really override what users are expecting from a webpage, and that is being able to select any text they want.

link|flag
1  
Likewise in Safari/Chrome/etc. -khtml-user-select:none; – Brandon DuRette Feb 23 '09 at 16:29
Is this likely to appear in the CSS standards though? – Harry Mar 21 '09 at 3:51
vote up 2 vote down

A good rule of thumb: Don't put text on the internet that you don't want copied.

Edit: Didn't read the problem correctly.

link|flag
LOL you might be right - certainly future readers might be more interested in text protection – Harry Mar 21 '09 at 3:51
If your content is really interesting, then there is little you can ultimately do to protect it – Harry Mar 21 '09 at 3:52
vote up 2 vote down

For an example of why it might be desirable to suppress selection, see SIMILE TImeline, which uses drag-and-drop to explore the timeline, during which accidental vertical mouse movement causes the labels to be highlighted unexpectedly, which looks weird.

link|flag
vote up 1 vote down

images can be selected too. there are limits to using javascript to deselect text, as it might happen even in places where you want to select. To ensure a rich and successful career, steer clear of all requirements that need ability to influence or manage the browser beyond the ordinary... unless, of course, they are paying you extremely well.

link|flag
vote up 1 vote down

For Safari, "-khtml-user-select: none", just like Mozilla's "-moz-user-select" (or, in JavaScript, target.style.KhtmlUserSelect="none";).

link|flag
vote up 0 vote down

If it looks bad you can use CSS to change the appearance of selected sections.

link|flag
vote up 0 vote down

While many of the examples listed here work, keep in mind nothing prevents someone from just looking at the source code and copying the text.

link|flag
vote up 0 vote down

I'm finding some level of success with the CSS described here http://www.quirksmode.org/css/selection.html:

::selection {
    background-color: transparent;
}

It took care of most of the issues I was having with some ThemeRoller ul elements in an AIR application (WebKit engine). Still getting a small (approx. 15 x 15) patch of nothingness that gets selected, but half the page was being selected before.

link|flag
vote up -2 vote down

You can use images of the text. Have you played with the mouseover event?

link|flag
vote up -3 vote down

Your best bet might be to force a Javascript deselect whenever text is selected. The only other way I can think of (in my extremely limited web-dev experience) would be to render each character individually as an image on the server-side. This would likely feel a little strange to the client though due to differences in fonts.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.