Skip to content

Instantly share code, notes, and snippets.

@joshkennedy
Created April 26, 2013 01:25
Show Gist options
  • Save joshkennedy/5464524 to your computer and use it in GitHub Desktop.
Save joshkennedy/5464524 to your computer and use it in GitHub Desktop.
$('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