Skip to content

Instantly share code, notes, and snippets.

View Jmg-21's full-sized avatar
🏠
Working from home

Jmg-21

🏠
Working from home
View GitHub Profile
@Jmg-21
Jmg-21 / array2Table.js
Last active September 26, 2019 11:41 — forked from veganista/arrayToTable.js
jQuery array to HTML table.
var arrayToTable = function (data, options) {
"use strict";
var table = $('<table />'),
thead,
tfoot,
rows = [],
row,
i,