I'm using Fancybox jQuery plugin, which I call manually when the click event occurs. The problem I'm facing is when I'm using a group of images in order to be able to navigate between them using arrows. For this purpose all images in the group have the same 'rel' attribute. Everything seem to work fine with the below code, which I've managed to write, but the problem is with the first loaded image because even if I click the second image - the first one shows in the lightbox as that's the first index in the created array.
So my question is - how can I rearrange the array so that the clicked item will become the first one and the preceding ones are moved to the end of array - basically moving items.
Example would be:
var thisArray = [ item-1, item-2, item-3 ];
var thisArray = [ item-2, item-3, item-1 ];
My code is as follow (I've also already have the 'currentIndex' variable, which returns the index of the clicked element:
lightbox : function(obj) {
"use strict";
obj.live('click', function(e) {
e.preventDefault();
var thisObj = $(this);
var thisOptions = {
beforeLoad : function() {
$('body').css('overflow', 'hidden');
},
afterClose : function() {
$('body').css('overflow', 'auto');
},
scrolling : 'no',
fitToView : true,
margin : 0,
padding : 0,
closeBtn : false,
closeClick : true,
arrows : true,
helpers : {
title : {
type : 'inside'
},
overlay : {
speedIn : 0,
speedOut : 300,
opacity : 1,
css : {
cursor : 'pointer',
'background-color' : '#000'
},
closeClick: true
}
}
};
var thisAttrRel = thisObj.attr('rel');
if (thisAttrRel) {
var thisObjs = $('a[rel='+thisAttrRel+']');
if (thisObjs.length > 1) {
var currentIndex = thisObjs.index(thisObj);
var thisItems = [];
jQuery.each(thisObjs, function() {
var thisHref = $(this).attr('href');
var thisTitle = $(this).attr('title');
thisItems.push({ 'href' : thisHref, 'title' : thisTitle });
});
jQuery.fancybox.open(thisItems, thisOptions);
}
} else {
thisOptions.href = thisObj.attr('href'),
jQuery.fancybox(thisOptions);
}
});
}