Team:UNITN-Trento/JS/Gallery
From 2013.igem.org
(Difference between revisions)
(Created page with "$(document).ready(function() { $('#jms-slideshow').jmslideshow(); });") |
|||
Line 1: | Line 1: | ||
$(document).ready(function() { | $(document).ready(function() { | ||
$('#jms-slideshow').jmslideshow(); | $('#jms-slideshow').jmslideshow(); | ||
+ | |||
+ | $("#jms-slideshow .step").each(function() { | ||
+ | img = $(this).css('background-image'); | ||
+ | alert(img); | ||
+ | }); | ||
}); | }); |
Revision as of 13:58, 23 September 2013
$(document).ready(function() { $('#jms-slideshow').jmslideshow();
$("#jms-slideshow .step").each(function() { img = $(this).css('background-image'); alert(img); }); });