The title overstates the point. Both these scripts in their latest versions are pretty darn good as are many of the other Lightbox type scripts out there (see end for two others or Google Lightbox for more, though not all are as good as those mentioned here, many including the original Lightbox mentioned in the title of this blog entry are). Here's the real story - Some time ago Dynamic Drive's Lightbox by Lokesh Dhakar was added to the Dynamic Drive official scripts. ...
Updated 07-08-2014 at 04:50 PM by jscheuer1 (add update for more recent jQuery versions)
The Sticky Tooltip script has some room for updating as I've outlined here: Sticky Tooltip script - not sticky and here: Sticky Tooltip script - no dock in IE 7- for image map In those threads I offer piecemeal solutions, the first of which above is the most problematic: Originally Posted by jscheuer1 Even on the demo page, if the tip is in sticky mode and one mouses over one of the other triggers, the tip changes position and content. Also in sticky mode, ...
Updated 12-16-2010 at 05:17 PM by jscheuer1 (add another update)
There are actually 4 css selectors that can figure in this. Only three of them really matter. If you only have one show on your page, you only need to think about the last two. The selectors are: The id of the show, #fadeshow1, for example. .fadeslidedescdiv - the class for all description containers. .descpanelbg - the class for all description backgrounds. .descpanelfg - the class for all description foregrounds. ...
#fadeshow1
.fadeslidedescdiv
.descpanelbg
.descpanelfg
Sometimes we want to get the style of something. But, since it wasn't set inline or via javascript, or perhaps was set in a stylesheet using the: Code: !important keyword that overrides inline and javascript assignments, we cannot access it. Here is a fairly robust script that will allow us to do so in many cases: Code: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> ...
!important
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
Updated 03-05-2010 at 02:52 AM by jscheuer1 (precision in explanations)
I've found that this actually can work. It makes an interesting use of the slide show's undocumented oninit feature, and how well the slide show is written visa vis jQuery's No Conflict mode. I would generally advise using two scripts which work off of the same script library, rather than two different script libraries. However, in this case both scripts are so robust, who can resist? That said, all you need to do to set up a demo is to follow the instructions for Ultimate Fade ...
Updated 09-24-2010 at 09:57 PM by jscheuer1 (Flesh out Links to demo, source scripts)