Skip to content

Instantly share code, notes, and snippets.

@megatux
Last active December 11, 2015 21:09
Show Gist options
  • Select an option

  • Save megatux/4660545 to your computer and use it in GitHub Desktop.

Select an option

Save megatux/4660545 to your computer and use it in GitHub Desktop.
move imgs to jquery carousel
$('.md img').each(
function(i){
img = $(this);
$('#locations-carousel .carousel-inner').append(
'<div class="item">' + img.html() + '</div>');
//img.remove();
}
)
$('.md img').appendTo('#locations-carousel .carousel-inner')
$('#locations-carousel .carousel-inner img').wrap('<div class="item" />')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment