Created
June 12, 2025 03:19
-
-
Save vtanathip/94a6d06e209dfbb0acd9b731dbaf9aa7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
const myComponent = document.querySelector('my-custom-component'); | |
const shadowRoot = myComponent.shadowRoot; | |
const myParagraph = shadowRoot.querySelector('#my-paragraph'); | |
console.log(myParagraph.textContent); // Output: Hello from Shadow DOM! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment