I am using prettyphotos to display slideshow and lightbox, but how I can get current photo id which is showing in Lightbox.

PrettyPhotos offer callback function changepicturecallback: function()

I tried it but am not able to get current photo id.

Am using this code

plz help

$("a[rel^='prettyPhoto']").prettyPhoto({theme: 'light_square',slideshow:5000,
            changepicturecallback: function(){
            //Run on every image change
                $('.gallery-list li').index($('.selected')).find('img').attr('id');

            }
        });
link|improve this question

67% accept rate
feedback

2 Answers

up vote 0 down vote accepted

This should do the trick

$pp_pic_holder.find("#pp_full_res img").attr("id");

prettyphoto is somehow not fetching runtime elements.

link|improve this answer
feedback

You could try

$('.pp_gallery').find('li').index($('.selected'));
link|improve this answer
I am in slideshow mode, how i can get current pic id. – saquib Aug 2 '11 at 10:34
Yes. What do you mean by pic id? You could append .find('img').attr('id'); to the above. – Calum Aug 2 '11 at 10:48
I have assigned pic id attribute to all images anchor tag. – saquib Aug 3 '11 at 4:08
$("a[rel^='prettyPhoto']").prettyPhoto({theme: 'light_square',slideshow:5000, changepicturecallback: function(){ //Run on every image change $('.gallery-list li').index($('.selected')).find('img').attr('src'); //console.log($(this).parent('a.fbox')); } }); – saquib Aug 3 '11 at 4:15
I have tried above code but it is not working. – saquib Aug 3 '11 at 4:16
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.