Skip to content

Instantly share code, notes, and snippets.

@mlhaufe
Last active September 29, 2015 02:08
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 mlhaufe/1531696 to your computer and use it in GitHub Desktop.
Save mlhaufe/1531696 to your computer and use it in GitHub Desktop.
WSH Quick DOM
<job>
<script language="JScript">
var oDOM = WScript.GetObject("http://www.google.com");
do {
WScript.sleep(200);
} while(oDOM.readyState != "complete")
WScript.echo(oDOM.documentElement.outerHTML)
</script>
</job>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment