Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8387217
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T18:09:10+00:00 2026-06-09T18:09:10+00:00

In the prettyPhoto changePictureCallback function, I’d like to know which lightbox is currently open.

  • 0

In the prettyPhoto changePictureCallback function, I’d like to know which lightbox is currently open. Currently I’m doing this:

$("a[rel^='prettyPhoto']").prettyPhoto({
  deeplinking : false,
  counter_separator_label : ' of ',
  gallery_markup : '',
  social_tools : '',
  slideshow : false,
  changepicturecallback: function(){
    //do stuff
    id_to_find = $(".active_lightbox").attr('href');
  },
  opacity : 0.29
}).click(function(){
  $(this).addClass('active_lightbox');
});

This way, when the anchor gets clicked on, is gets active_lightbox put onto it.
However, this doesnt play very well. I can end up having multiple active_lightbox elements, and also, it doesnt put that class on the “active_lightbox” if I use the next button within the lightbox gallery.
So, how do I tell which lightbox is currently open with jquery/js?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T18:09:12+00:00Added an answer on June 9, 2026 at 6:09 pm

    A couple options here, but the one that jumps out to me:

    It looks like you’re trying to working with a few <a rel="prettyPhoto##"> where ## is the gallery or photo number? If this is the case, I recommend something like this:

    $("a[rel^='prettyPhoto']").each(function(index, elm)
      var $elm = $(elm);
      // an arbitrary ID based on its order in the DOM
      var photo_id = index;
      // returns the ## from rel="prettyPhoto##"
      var gallery_id = $(elm).attr('rel').replace("prettyPhoto", ""); 
      $elm.prettyPhoto({
        ...
        changepicturecallback: function(){
          // do stuff
          // photo_id
          // gallery_id
          // elm and $elm
        },
        ...
      });
    

    OR you could add a little more markup but be more precise by making use of data- tags.

    RESOURCES

    • http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/#prettyPhoto
    • http://api.jquery.com/data/
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have something like this, $(a[rel^='prettyPhoto']).prettyPhoto({ theme: 'light_square' }); but then I use $('.menu').click(function()
$(document).ready(function(){ $(a[rel^='prettyPhoto']).prettyPhoto(); }); How do I get this to load onload instead of when
I am using PrettyPhoto lightbox, and trying to set a rel attribute on a
I am opening a an ajax window using prettyPhoto: http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/ This is my link
i'm trying to use prettyPhoto API, but firebug says that $.prettyPhoto.open() isn't a function
The code for the iframe goes like this since I'm using prettyPhoto <a href=stories/story1txt.php?iframe=true&width=400&height=200
I've recently started using prettyphoto to display a video. This is my current setup
I'm using the JQuery prettyPhoto lightbox clone, and it works great, but I have
Here is my string $newPath = '/~new/assets/js/../packages/prettyphoto/js/jquery.prettyPhoto.js'; Now check this output var_dump($newPath); // string(64)
I'm using prettyphoto jquery plugin for lightbox. When somebody clicks on a link it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.