Created
March 27, 2009 15:25
-
-
Save stevestreza/86742 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- your HTML --> | |
<div id="galleryContainer"> | |
<ul class="galleria" id="gallery1"> | |
your content here | |
</ul> | |
<ul class="galleria" id="gallery2"> | |
your content here | |
</ul> | |
<ul class="galleria" id="gallery3"> | |
your content here | |
</ul> | |
</div> | |
<!-- the javascript to activate it --> | |
<script type="text/javascript"> | |
$(function(){ | |
$('ul.galleria').galleria(); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment