Advertisement
Guest User

Untitled

a guest
Jun 30th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. window.onload = function() {
  2. var contentHTML = document.getElementById("teste").content;
  3. var linha = document.importNode(contentHTML, true);
  4. document.getElementById("tabela").appendChild(linha);
  5. }();
  6.  
  7. <table id="tabela" class="table" style="width: 820px;">
  8. <!-- aqui entra a templae -->
  9. </table>
  10.  
  11. <!-- template -->
  12. <template id="teste">
  13. <caption>Optional table caption.</caption> <thead> <tr> <th>#</th> <th>First Name</th> <th>Last Name</th> <th>Username</th> </tr> </thead> <tbody> <tr> <th scope="row">1</th> <td>Mark</td> <td>Otto</td> <td>@mdo</td> </tr> <tr> <th scope="row">2</th> <td>Jacob</td> <td>Thornton</td> <td>@fat</td> </tr> <tr> <th scope="row">3</th> <td>Larrya</td> <td>the Bird</td> <td>@twitter</td> </tr> </tbody>
  14. </template>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement