Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to make all .note elements have a specific tooltip.

Is it possible to do this automatically, e.g. in CSS? Just like the note class has colors and a font defined, is it possible to bind the tooltip text (the title attribute) with that class?

I could make some function that iterates over all .note elements and append the title attribute if it's not present yet. However, since I don't have to iterate manually for CSS styles, I was wondering if there is a more elegant solution to this problem as well (e.g. is it possible to define it in CSS?).

share|improve this question
1  
CSS has to do with presentation and style; the title attribute is data, not presentation. – cdhowie Aug 7 '11 at 21:22
@cdhowie: infact title is actually a presentation stuff only, not data. – user01 Oct 27 '12 at 15:29

5 Answers

up vote 7 down vote accepted

That's not something that's within the scope of CSS. Your best bet is to use some JavaScript or JQuery.

share|improve this answer

You can't change the attributes of an element using CSS; you could, perhaps, emulate the title functionality, though (albeit only clumsily):

.note {
    position: relative;
}

.note:after {
    content: "The alternate 'pseudo-title' text for the .note elements.";
    position: absolute;
    left: 50%;
    background-color: #000;
    color: #fff;
    }

JS Fiddle demo.

However using this will still allow the original title to show, so I'd suggest removing that attribute with JavaScript (or in a server side language).

Possible JavaScript title-removal method:

var notes = document.getElementsByClassName('note');
var notesNum = notes.length;

for (i=0; i<notesNum; i++){
    notes[i].removeAttribute('title');
}

JS Fiddle demo (combining the two approaches).


Edited, as the OP, from comments (below) doesn't want to change the existing look and feel, to add a JavaScript option to assigning a new title for all elements with the class-name of note:

var notes = document.getElementsByClassName('note');
var notesNum = notes.length;
var newTextForNotesClass = "This is the new title text for the notes-class-name group.";

for (i=0; i<notesNum; i++){
    notes[i].title = newTextForNotesClass;
}

JS Fiddle demo.

share|improve this answer
I'm sorry to say but I prefer the regular tooltip. I'd rather not change the look and feel. – pimvdb Aug 7 '11 at 21:26
There's no need to apologise for that! :) Please see the newest edit, which shows a JavaScript solution that (should) meet your needs. :) – David Thomas Aug 7 '11 at 21:32

CSS is for styling not for carrying out action; you would need JavaScript for that sort of thing. You could use document.getElementsByClassName to get an array that you could for loop through setting those title attributes.

share|improve this answer
In fact I'm doing that currently, I was just wondering whether it is possible to define the tooltip text the same way as the font/colors/etc. I'll just continue this way. – pimvdb Aug 7 '11 at 21:27

As you asked the question with 'e.g. CSS', I'm presuming you want an answer as to how to use a class to assign a title. Like the other answers, jQuery or javascript is your best bet.

With jQuery, you can do:

tooltip = "Tooltip Text";
$('.note').attr('title', tooltip);

Here is a fiddle with an example: http://jsfiddle.net/RdNvy/

share|improve this answer

I'm not sure, but try to loot at css "content" property. http://www.w3schools.com/cssref/pr_gen_content.asp

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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