Created
July 31, 2024 14:11
-
-
Save cferdinandi/39774222f289c2d6eee22282350e0eea to your computer and use it in GitHub Desktop.
Appending content inside the constructor() of a Web Component.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Web Component Example</title> | |
<style> | |
body { | |
margin: 1em auto; | |
max-width: 40em; | |
width: 88%; | |
} | |
</style> | |
</head> | |
<body> | |
<say-hi></say-hi> | |
<script> | |
// JavaScript | |
customElements.define('say-hi', class extends HTMLElement { | |
/** | |
* The class constructor object | |
*/ | |
constructor () { | |
// Gives element access to the parent class properties | |
super(); | |
// Create greeting | |
let h1 = document.createElement('h1'); | |
let p = document.createElement('p'); | |
// Add content | |
h1.textContent = '👋 Hi there!'; | |
p.textContent = 'How are you today?'; | |
// Append into the DOM | |
this.append(h1, p); | |
} | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment