Revisions
-
tfer renamed this gist
Nov 5, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ <!DOCTYPE html> <html> <head> <title>My second script</title> <script src="script02.js"></script> </head> <body> <h1 id="helloMessage"> </h1> <script id="jsbin-javascript"> window.onload = writeMessage; function writeMessage() { document.getElementById("helloMessage").innerHTML = "Hello, world!"; } </script> <script id="jsbin-source-javascript" type="text/javascript">window.onload = writeMessage; function writeMessage() { document.getElementById("helloMessage").innerHTML = "Hello, world!"; }</script></body> </html> This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ window.onload = writeMessage; function writeMessage() { document.getElementById("helloMessage").innerHTML = "Hello, world!"; }