"; html += pname; html += "
"; html += '
'; html += ""; $(".compare_list").prepend(html); $(".compare_list .add_another:visible:first").hide(); $(this).attr("disabled", true); } else { if (get_compare_list_count() == 4) { alert("You can compare up to four SSL Certificates."); } } manage_compare_button(); }); } function get_compare_list_count() { return $("form#ssl-compare-form .compare_list > .compare_item").length; } function manage_compare_button() { if (get_compare_list_count() > 1) { $("button#compare-ssl").prop("disabled", false); } else { $("button#compare-ssl").prop("disabled", true); } } function getFirstKey(parse_data) { for (var k in parse_data) { return k; } } function showProductHtml(item) { let show_html = window.template('show_template', { product_lists: item['child'], base_href: window.all_config.manage_url, brand_logo: item['small_logo'] }); $('.product_lists').html(show_html); let table_title_template = window.template('table_title_template',{ table_title:item.brand_name }); $('.table-title').html(table_title_template); bind_event(); } function getData() { $.post(window.all_config.main_url + '/Home/Index/compare_product', { audit_type: $("#slc1").val(), domain_type: $("#slc2").val() }, function (data) { let parse_data = JSON.parse(data); console.log(parse_data); let html = window.template('MAINSHOP_vertical_template', { comment_lists: parse_data, base_href: window.all_config.manage_url }); console.log(html); $('.add_template').html(html); for (var k in parse_data) { $("#brand-" + parse_data[k].brand_id).bind("click", {index: k}, clickHandler); let first_key = getFirstKey(parse_data); $("#brand-" + parse_data[first_key].brand_id).addClass('active'); showProductHtml(parse_data[first_key]); function clickHandler(e) { e.preventDefault(); showProductHtml(parse_data[e.data.index]); }; } }); } })()