render method
The method will change the DOM-Tree according to the content
Implementation
void render() {
querySelector("body").setInnerHtml("<div id='menu'></div>");
querySelector("#menu").insertAdjacentElement("afterbegin", this.content);
}
The method will change the DOM-Tree according to the content
void render() {
querySelector("body").setInnerHtml("<div id='menu'></div>");
querySelector("#menu").insertAdjacentElement("afterbegin", this.content);
}