I have main html page and then I need to add a dynamically created list of a template of another html file I created.
Basically I have a template for one item of the list in a separate HTML page.
So what I need to do is create instances of that html page, populate the correct data, and then add it to list of items on the main html page. I would know how to do this in java but I am not sure how to do this in HTML / Javasript.
What is the preferred way to dynamically create html object instances.
Thanks