Skip to content

Instantly share code, notes, and snippets.

@Ceasar
Created February 15, 2013 16:27
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 Ceasar/4961496 to your computer and use it in GitHub Desktop.
Save Ceasar/4961496 to your computer and use it in GitHub Desktop.
Crashes a page after 10 seconds and uses all of a CPU. Left uncorrected, it can crash multiple pages in Chrome.
$(document).ready(function () {
setTimeout(function(){while(1){};},10000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment