Skip to content

Instantly share code, notes, and snippets.

@mrgenixus
Forked from elliottkember/app.js
Created May 10, 2013 16:52
Show Gist options
  • Save mrgenixus/5555706 to your computer and use it in GitHub Desktop.
Save mrgenixus/5555706 to your computer and use it in GitHub Desktop.
$(function(){
$('*[data-repeat]').each(function(){
var n = $(this).data('repeat');
var parent = $(this).parent();
self = $(this);
for (var i = 0; i < n; i++) {
parent.append(self.clone());
}
})
});
<section>
<div data-repeat="10">This is my content</div>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment