I would like to create table inside a div element
On my .html file, I have this
<div id='div1'> </div>
On my js file, I want to place new table with rows and with data
How can I implement this?
|
|
|
|
|
|
|
Assuming you have the HTML for the table, you can simply create a jQuery object out of it and append it to the DIV. If you have the data, you'll need to iterate through it and create the cells/rows from the data and add them independently.
or
|
||
|
|
|
|
|
||
|
|
|
|
There are many different ways you could go with this. One way is to do something like this:
This will put the full table into your div, parsed as HTML. Another way, if you want to add each row separately, would be:
It's important to understand that |
||
|
|