Created
February 9, 2016 15:22
-
-
Save renepardon/a172d126b531386c84ac 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
| for (i = 0; i < 10000; i++) { | |
| $('#container').append(i + '<br />') | |
| } |
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
| 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