Skip to content

Instantly share code, notes, and snippets.

@Bajena
Created July 4, 2017 19:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bajena/3f7e386f1d49da92dd16503f8c461651 to your computer and use it in GitHub Desktop.
Save Bajena/3f7e386f1d49da92dd16503f8c461651 to your computer and use it in GitHub Desktop.
DOM breakpoints demo
setInterval(function() {
var x = getRandomInt(0, 100);
$('#numbers').append(x).append("<br/>");
}, 1000);
setInterval(function() {
var x = getRandomInt(101, 200);
$('#numbers').prepend("<br/>").prepend(x);
}, 2000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment