Skip to content

Instantly share code, notes, and snippets.

@renepardon
Created February 9, 2016 15:22
Show Gist options
  • Select an option

  • Save renepardon/a172d126b531386c84ac to your computer and use it in GitHub Desktop.

Select an option

Save renepardon/a172d126b531386c84ac to your computer and use it in GitHub Desktop.
for (i = 0; i < 10000; i++) {
$('#container').append(i + '<br />')
}
var $data = $('<div></div>');
for (i = 0; i < 10000; i++) {
$data.append(i + '<br />');
}
$('#container').html($data.html());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment