I\'m trying to create a table from tabular data in javascript, but when I try inserting rows into a table element, it inserts in the opposite
You can do this:
var table = document.getElementById('myTableId'); var rowCount = table.rows.length; var row = table.insertRow(rowCount);