Hello everyone I am having the problem of putting array data into the table columns and rows using jquery check my code here http://jsfiddle.net/Reginald/xs5bnz3g/1/ my jquery code is like this
firttd = ["try error catch","Checkers","2015-04-14","2015-04-30"];//wanna
//put this on the table td and tr
var tbody = $('tbody #firstraw'),
var tr = $('<tr>');
$.each(firttd, function(i, prop) {
$('<td>').html(firttd).appendTo(tr);
});
tbody.append(tr);