//*[not(*)]
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
| <template id="helloWord"> | |
| <style> | |
| h1{ | |
| color: green; | |
| } | |
| </style> | |
| <div> | |
| <h1>Hello Word</h1> | |
| <h2>...</h2> | |
| </div> |
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
| var template = document.querySelector('#helloWord'); | |
| var clone = document.importNode(template.content, true); | |
| var host = document.querySelector('#container'); | |
| host.appendChild(clone); |
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
| <link rel="import" href="myComponentToImport.html" /> |
OlderNewer