Difference between revisions of "Main Page"

From ProgZoo
Jump to navigation Jump to search
Line 10: Line 10:
* [[DOM Creating content]]
* [[DOM Creating content]]
* [[DOM working with data]]
* [[DOM working with data]]
* [[DOM content from lists]]
==Hello World, JavaScript==
==Hello World, JavaScript==
<div class='qu'>
<div class='qu'>

Revision as of 08:28, 26 August 2021

Drawing images

Manipulating DOM

Hello World, JavaScript

What is 6 times 7?

alert(6 * 7);
alert(6 * 7);

Change Content

Where's Wally?

document.body.innerHTML = 'Wally was here';
document.body.innerHTML = 'Wally was here';