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

Is there anyway of customizing all tool tips through title tag without having to add classes or span etc.

Basically just show custom tooltip whenever the title="" tag is used

The following demo adds tooltip class to all the fields found in a given form, however i cant make it work with my website for some unknown reason which i have given up on.

http://jquerytools.org/demos/tooltip/form.html

share|improve this question

migrated from webmasters.stackexchange.com Apr 12 '12 at 21:00

1 Answer

up vote 4 down vote accepted

You can use CSS3 to target the title element p[title^="ho"] {background: green;} and create javascript-less tooltips.

This would allow you to programmatically add tips using only CSS, but you would have to have a jQuery or javascript fallback for older browsers.

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.