var plans = "";
var services = "";
$(function() {
$('#compareTable').append('
|
---|
Monthly price |
|
Monthly price |
|
');
$.each(services, function(k, v) {
$('#compareTable tbody ').append('' + v['title'] + ' |
');
$.each(v['features'], function(kk, f) {
//$('#compareTable tbody [data-category=' + k + ']').after('' + f + ' |
');
$('#compareTable tbody').append('' + f + ' |
');
});
});
$.each(plans, function(k, v) {
$('#compareTable .plan_names').append('' + v['name'] + ' | ');
$.each(v['services'], function (s, val) {
$('#compareTable tr[data-service=' + s + ']').append('' + val + ' | ');
});
$('#compareTable .prices').append('' + v['prices'] + ' | ');
if (v['stock']) {
$('#compareTable .order').append('Order | ');
} else {
$('#compareTable .order').append('Out of stock | ');
}
});
});