Team:UNITN-Trento/JS/Gallery
From 2013.igem.org
$(document).ready(function() { var jmpressOpts = { hash : { use : true } }; $('#jms-slideshow').jmslideshow( $.extend( true , { jmpressOpts : jmpressOpts }, { autoplay : false, arrows : true }));
$("#jms-slideshow .step").each(function() { id = $(this).attr('id'); img = $(this).css('background-image').split("\"")[1]; $(".container .sheet").append("<a href='javascript:document.location.hash = " + id + ";' class='thumb'><img src='" + img + "' /></a>"); }); });