mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
6 lines
133 B
JavaScript
6 lines
133 B
JavaScript
// Simple script that changes an element's content.
|
|
|
|
var head = document.getElementById("header");
|
|
head.innerHTML = "Hello World!";
|
|
|