Createhtmldocument() Does Not Initialize
I'm new to JavaScript and HTML5 and today I was playing with createHTMLDocument() and I ran into a frustrating problem. I got the following snippet from Mozilla's site:
<bodyonload="makeDocument()">
instead of calling the function directly in your script tag.
Browsers are multi-threaded so you cannot guarantee that the DOM is done loading even though the script tag is after the iframe definition.
Post a Comment for "Createhtmldocument() Does Not Initialize"