This repository has been archived on 2022-11-21. You can view files and clone it, but cannot push or open issues or pull requests.
vidarousel/js/main.js

14 lines
329 B
JavaScript
Raw Normal View History

2022-11-21 09:50:37 +01:00
window.addEventListener("load", () => main());
const main = () => {
const videoTree = {
1: "",
};
const mainElement = document.getElementsByTagName("main").item(0);
const newElement = document.createElement("p");
newElement.textContent = "Hello world!";
mainElement.appendChild(newElement);
};