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

Which cross browser tooltip tools/plugins/components are available for ruby on rails?

share|improve this question

2 Answers

up vote 2 down vote accepted

This is more or less an issue for your frontend, not for Rails. If you use Prototype (which is built in into RoR) have a look at this. If you want to use jQuery, then this is great.

Both tools work (in their simplest use case) by displaying the title attribute.

share|improve this answer

This is not something you need to do on the backend. Just declare a standard tooltip with the title attribute

<span title="this is my tooltip">foo</span>

and style it on the frontend. A nice jQuery plugin to style tooltips.

share|improve this answer
helpful reminder if you're looking for something quick and easy, thanks – jpwynn Sep 4 '12 at 18:22

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.