Here's a jsFiddle that takes your HTML data and make a table out of it: http://jsfiddle.net/jfriend00/RKBAj/.
Making these assumptions:
- Every top level div in the document is a product
- Every top level div has an ID that represents the product name
- Every span in the top level div is a month
- Every span in the top level div has a class that represents the product name
- The innerHTML of the span is the data for that product/month
- Product names can be anything (though they have to be made only our legal characters for a CSS ID).
- Month names can be anything (though they have to be made only our legal characters for a CSS class).
- There can be as many months and products as you want.
- Each product can have any number of months.
- All products don't necessarily have the same months.
Then, here's how you could iterate over the data and collect all the data into an organized data structure from which you could build a table.
// iterate over divs which we assume are products
var allProducts = [];
var allMonthsOrder = [];
function parseData() {
$("body > div").each(function() {
var allMonthsKey = {};
var product = {};
product.name = this.id;
product.months = {};
// now iterate each month in this product
$("span", this).each(function() {
var month = this.className;
product.months[month] = this.innerHTML;
// add unique months to the month array (only if we haven't seen it before)
if (!allMonthsKey[month]) {
allMonthsKey[month] = true;
allMonthsOrder.push(month); // store these in order encountered
}
});
allProducts.push(product);
});
}
// data is stored now in allProducts array
// one array element for each product
// each product is an object with a .name attribute and a .months attribute
// each .months attribute is an object where each attribute is a month name and the data for that month
The data is stored like this:
allProducts = [
{
"name": "coat",
"months": {"Jan2011-Sales": "10", "Feb2011-Sales": "10", "Mar2011-Sales": "10"},
]
},
{
"name": "boot",
"months": {"Jan2011-Sales": "10", "Feb2011-Sales": "10", "Mar2011-Sales": "10"},
},
{
"name": "hat",
"months": {"Jan2011-Sales": "10", "Feb2011-Sales": "10", "Mar2011-Sales": "10"},
}
];
And, this is one way you could create your table from the data. The tricky part of generating the table is that if any product can have any number of months and all products don't necessarily have the same months, then you have to make a row for every month that exists and fill in product data if it has data for that month.
function createTable() {
var i, j, product, month;
var html = "<table><tr>";
// iterate over the product names to make the header row
html += "<th>Month</th>";
for (i = 0; i < allProducts.length; i++)
html += "<th>" + allProducts[i].name + "</th>";
}
html += "</tr">
// now create all the rows. First column is month, then each column after that is the sales for
// a given month for a particular product (one product per columnn)
for (i = 0; i < allMonthsOrder.length; i++) {
month = allMonthsOrder[i];
html += "<tr>" + "<td>" + month + "</td>";
// iterate through each product and find if it has data for this month
for (j = 0; j < allProducts.length; j++) {
product = allProducts[j];
html += "<td>";
if (product.months[month]) {
html += product.months[month];
}
html += "</td>";
}
html += "</tr>";
}
html += "</table>";
}