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 rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs -~----------~----~----~----~------~----~------~--~---
Looks good, I''ve been wanting a simple tooltip control too. Andrew On 10/19/06, Jonathan Weiss <jw-eM0Q5iXcOashFhg+JK9F0w@public.gmane.org> wrote:> > 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 rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs -~----------~----~----~----~------~----~------~--~---
On 10/19/06, Andrew Kaspick <akaspick-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > Looks good, I''ve been wanting a simple tooltip control too. > > AndrewSame here. Good work. --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs -~----------~----~----~----~------~----~------~--~---
Here''s my version of a Tooltip widget, last updated in May/June: demo: http://boygeni.us/tooltips/ source: http://boygeni.us/svn/tooltips/ regards, ejc On 10/19/06, John Beppu <john.beppu-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > On 10/19/06, Andrew Kaspick <akaspick-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > Looks good, I''ve been wanting a simple tooltip control too. > > > > Andrew > > Same here. Good work. > > > >--~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs -~----------~----~----~----~------~----~------~--~---