27
Aug
07

jQuery v1.1.4 & Light Box v2.03.3 Updates

2 of the most useful internet readymades (webbymades?); jQuery and LightBox. jQuery is one of the more prominent javascript frameworks, and now even faster than before. LightBox is a javascript and css web application for pop ups and galleries; currently being used in a previous iteration on my site.


8 Responses to “jQuery v1.1.4 & Light Box v2.03.3 Updates”


  1. 1 allank Sep 11th, 2007 at 6:12 am

    Unfortunately Lightbox does NOT work with jQuery. But Thickbox does.

  2. 2 Sijan Khadka Sep 16th, 2007 at 5:38 am

    I suggest jLightbox for using Lightbox with jQuery. (http://drupal.org/project/jlightbox)
    Though it is drupal module, it works perfectly everywhere.

  3. 3 allank Sep 17th, 2007 at 6:43 am

    I think I may be missing necessary javascript. I am getting 2 javascript errors that do not permit me to close the gallery twice and the do not allow the close button image to appear ever. It is a little wonky but as close as I have found anywhere. I did find this in my search to answer my questions about jLightbox, http://warren.mesozen.com/, which may or may not be a better solution.

  4. 4 Warren Sep 17th, 2007 at 6:36 pm

    In reply to the post by allank, jLightbox is a packaged version of the jQuery Lightbox found at http://warren.mesozen.com/. jLightbox, however, was build on V 0.2 of the jQuery Lightbox, and i’ve recently updated the script to V0.3. I believe the problems you mentioned have been addressed in this release. If not, feel free to report any bugs to krewenki [at] gmail.

    Cheers!

  5. 5 allank Sep 18th, 2007 at 5:54 am

    Excellent! I works great as far as I’m concerned. I tweaked the code:

    $('#outerImageContainer').animate({width: widthNew},400,'linear',function(){
    $("#outerImageContainer").animate({height: heightNew},400,'linear',function(){
    Lightbox.showImage();
    });
    });

    with this code:

    $('#outerImageContainer').animate({
    width: widthNew,
    height: heightNew
    },300,'linear',function(){
    Lightbox.showImage();
    });

    so that the height and width animate at the same time. Now we need some dev time to get html, modals, and ajax in the jLightBox window.

    Great work man!

  6. 6 Daniel F. Kudwien Sep 20th, 2007 at 8:03 am

    A new version of jLightbox has been released. It is similar to Warren’s v0.3, but contains some additional bug fixes.

    Get it from http://drupal.org/project/jlightbox

  7. 7 Acronyms Mar 11th, 2008 at 11:39 pm

    Try Shadowbox. Great solution
    http://mjijackson.com/shadowbox/

  8. 8 allank Mar 12th, 2008 at 6:44 am

    I like that, it’s a good product. I only ended up using jLightbox because it allowed me to work it so that it would be functional in IE6 and it used jQuery at the time.

Leave a Reply