‘Ello,
Thanks for the replies, very good plugin and glad to see you actually helping people out with problems.
I worked out a method of getting the title tags value to be displayed, I wrote a small bit of jQuery to get the current slide number, find the image inside it, get the title tags value and then append it to the same div the image paged box things are in.
If anyone’s interested I’ve posted what I did below:
if (changed && opts.pager)
{
opts.updateActivePagerLink(opts.pager, opts.currSlide, opts.activePagerClass);
//N Nand - Changes to display image alt tag as an title in the slideshow
nnCurSlide = opts.currSlide + 1
nnImageTitle = $j('div#slide-'+nnCurSlide+' img').attr("alt");
$j('div.meteor-buttons span').remove();
$j('div.meteor-buttons').append('<span>'+nnImageTitle+'</span>');
}
The above code replaces (on line 639 I think):
if (changed && opts.pager)
{
opts.updateActivePagerLink(opts.pager, opts.currSlide, opts.activePagerClass);
Also after the code below goes at the bottom of the “function buildPager” function.
//N Nand - Changes to display image alt tag as an title in the slideshow
nnCurSlide = opts.currSlide + 1
nnImageTitle = $j('div#slide-'+nnCurSlide+' img').attr("title");
$j('div.meteor-buttons').append('<span>'+nnImageTitle+'</span>');
Hope this helps someone else and thanks for the replies JLeuze.