+ 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.
1 Resposta
+ 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.