Return to Snippet

Revision: 24724
at March 9, 2010 10:18 by Jamie


Initial Code
// Initiate your SlideDeck up here...
// Select all the activeCorner elements, then iterate through them and add ids.
$('.slidedeck div.activeCorner').each(function(i){
	$(this).attr('id','corner_' + (i+1));
});
// Style with CSS accordingly.

Initial URL

                                

Initial Description

                                

Initial Title
Add an id to each activeCorner on a SlideDeck

Initial Tags

                                

Initial Language
JavaScript