Created
April 26, 2013 01:25
-
-
Save joshkennedy/5464524 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
$('section.content img').each(function() { | |
var me = $(this); | |
var src = me.attr('src'); | |
me.wrap('<figure class="image-wrapper ' + me.attr('title') + '" />') | |
.after('<figcaption>' + $(this).attr('alt') + '</figcaption>') | |
.attr('src', './content/' + src); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment