Hey,
I guess this weird error "Object Expected"... Now I know that it means that it can't find a specifc function/variable/etc... But the issue is that it only happens when I copy this function within the .
js file. But if I comment out the whole function it finds the function, and I dont' get the error, but if I comment the insde of the createTable function (ie have noting withing the {}, it still gives me the Object Expected error... Like what gives?
function createTable(id,label,col,class)
{
var nTable = document.createElement("table");
var nThead = document.createElement("thead");
var nRow = document.createElement("tr");
var nHdr = document.createElement("th");
var nText = document.createTextNode(label);
nHdr.appendChild(nText);
nHdr.colSpan = col;
nRow.appendChild(nHdr);
nThead.appendChild(nRow);
nTable.id = id;
nTable.className = class;
nTable.appendChild(nThead);
document.getElementById('userSelection').appendChi ld(nTable);
}