Relative Content

Tag Archive for javascripthtmlhtml-templatesclonenodeinsertadjacenthtml

creating complex `template` in HTML and JS

I want to create cards and render them. For that I use <template> tag. <div class=”card”> <div class=”card-header”> <span class=”card-name”></span> <span class=”card-cost”></span> </div> <img class=”card-image” src=”” alt=”” /> <p></p> <!– template for table –> <table class=”card-stats”></table> <div class=”card-footer”> <span class=”card-priority”></span> <span class=”card-attack-and-defence”></span> </div> </div> </template> Everything is fine but here <table> tag should fetch from […]