Allora, ho capito qual'è il problema ma non so come risoverlo 
Spero che qualcuno mi dia una mano.
In IE su alcuni computer si blocca tutto perchè al terzo clik la gallery sta ancora facendo il buffering dei primi due e questo crea problemi.
ora come glielo dico di interrompere il buffering dei filmati già partiti quando se ne clikka uno nuovo?
Domanda da un milione di dollari!
Nel JS ho trovato queste linee ma non so come interpretarle e manipolarle:
codice:
* A hook function to be fired when Shadowbox changes from one gallery
* element to the next. The single argument will be the current gallery
* element that is about to be displayed.
*
* @var Function
*/
onChange: null,
codice:
/**
* Jumps to the piece in the current gallery with index num.
*
* @param Number num The gallery index to view
* @return void
* @public
* @static
*/
Shadowbox.change = function(num){
if(!gallery) return; // no current gallery
if(!gallery[num]){ // index does not exist
if(!options.continuous){
return;
}else{
num = num < 0 ? (gallery.length - 1) : 0; // loop
}
}
if(typeof slide_timer == 'number'){
clearTimeout(slide_timer);
slide_timer = null;
slide_delay = slide_start = 0; // reset slideshow variables
}
current = num; // update current
if(options.onChange && typeof options.onChange == 'function'){
options.onChange(gallery[current]); // fire onChange handler
}
loadContent();
};
qualche idea?