Read the latest web development and design tips at Fred Wu's new blog! :-)
Poke me on GitHub

jQuery Slideshow Lite Plugin Updated (Major Rewrite)

The jQuery Slideshow Lite plugin is updated with new features!

This is a major rewrite which fixed the known issue of not being able to change slides instantly via pagination clicks.

The new version also adds automatic photo caption display.

Enjoy! :)

  • Digg
  • DZone
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • LinkedIn
  • Live
  • Reddit
  • Slashdot
  • StumbleUpon
  • Technorati
  • Twitter

Related posts

Tags: , , , , , ,

Comments Section

One Response to “jQuery Slideshow Lite Plugin Updated (Major Rewrite)”

Sidebar might be covered by comments ... consider it a feature! ;)
  1. 1

    I change the following code

    // ----------------------------------------
    // create anchor links to make the structure simpler for manupilation
    // ----------------------------------------

    $("> img", target).wrap(document.createElement("a"));
    $("a", target).attr("target", options.anchorTarget);

    to

    $("> img",target).each(function(){
    $(this).wrap(document.createElement("a"));
    $(this).parent('a').attr("target", options.anchorTarget);
    });

    because i don’t like all the ‘a’ has the same ‘target’

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>