Chrome stuck in an infinite loop, can't copy / paste to save my jsfiddle

Hey, everything I just attached to jsfiddle for another StackOverflow user, and I accidentally presented an infinite loop in my code. Now my page is completely stuck. All I want to do is get the text that I wrote in the JSFiddle fields, so I do not lose the work that I did. Is there a way to tell Chrome โ€œHey, break everything you do so I can scroll the page and copy the textโ€?

Chrome version 30.0.1573.2 dev-m

Material that does not work:

  • Click and drag the page to select
  • Right click on the page
  • $('#element').text() in the F12 console
  • Expanding Elements in the F12 DOM Tree Tree to Copy a Child Element
  • Hi, I closed the debugger, now it just does not redraw this area of โ€‹โ€‹the screen, and it does not open again when I press F12
  • Control-U to view the source opened the tab for the first time, which simply hung with the "boot" favicon
  • Now Control-U does nothing

for those interested, I find the loop code was something like

 function lorem(n){ var words = ["lorem"] while(words.length < n){ words.concat(words); } return words.join(' ') }; 

edit: How did you earn this icon? Edited the first message, which is inactive for 6 months

+4
source share
1 answer

I am sure there is no way to do this.

-one
source

Source: https://habr.com/ru/post/1493731/


All Articles