java-script:hello-world
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
java-script:hello-world [2023/08/08 22:39] – odefta | java-script:hello-world [2023/08/08 23:12] (current) – odefta | ||
---|---|---|---|
Line 3: | Line 3: | ||
The following script will display 'Hello World' both in a popup window and in the browser' | The following script will display 'Hello World' both in a popup window and in the browser' | ||
< | < | ||
+ | |||
+ | ===== HTML + JS code in the same file ===== | ||
<code javascript hello-world-js.html> | <code javascript hello-world-js.html> | ||
Line 97: | Line 99: | ||
</ | </ | ||
+ | ===== HTML + JS code in separated files ===== | ||
+ | |||
+ | HTML code: | ||
+ | <code html hello-world.html> | ||
+ | < | ||
+ | <html lang=" | ||
+ | < | ||
+ | <meta charset=" | ||
+ | < | ||
+ | </ | ||
+ | < | ||
+ | < | ||
+ | <script src=" | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | Java Script code: | ||
+ | <code javascript hello-script.js> | ||
+ | alert(' | ||
+ | const h1 = document.querySelector(' | ||
+ | console.log(h1.textContent); | ||
+ | </ | ||
+ | |||
+ | <note tip>See also [[java-script: | ||
java-script/hello-world.1691523583.txt.gz · Last modified: 2023/08/08 22:39 by odefta