+ 1

Does anyone know a place to find all javascript document.blank Or window.blank?

I know there's document.getElement and other scripts like that same with window.history for example but I want to know if there's a place to find all of these.

22nd Feb 2019, 12:29 AM
EthanE230
EthanE230 - avatar
1 ответ
+ 4
You mean you want to see every property that exists in `document`? If so, you can try this in the code playground: for(prop in document) document.write(prop + '<br/>'); Warning, there's a lot.
22nd Feb 2019, 12:34 AM
Schindlabua
Schindlabua - avatar