Cheers,
I just released a very simple and flexible tooltip lib here: http://blog.innerewut.de/articles/2006/10/19/a-prototype-based-javascript-tooltip Basic usage looks like this: <script src="/javascripts/prototype.js" type="text/javascript"></script> <script src="/javascripts/tooltip.js" type="text/javascript"></script> <div id='tooltip' style="display:none; margin: 5px; background-color: red;"> Detail infos on product 1....<br /> </div> <div id='product_1'> This is product 1 </div> <script type="text/javascript"> var my_tooltip = new Tooltip('product_1', 'tooltip') </script> The tooltip is totally defined by you so you get complete flexibilty with your tooltips. Jonathan -- Jonathan Weiss http://blog.innerewut.de --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs -~----------~----~----~----~------~----~------~--~---
