$(document).ready(function () { /*Hide price grid start at # 2 for all groups*/ $(".ICGElems").each(function (index) { var _ID = $(this).attr("id").split("_"); $(".ExpCol_" + _ID[_ID.length - 1]).hide(); }); /*hide the shrink detail link*/ $(".CollapseICG").each(function (index) { $(this).hide(); }); /*expand if click*/ $(document).on("click", ".ExpandICG", function (e) { var _ID = $(this).attr("id").split("_"); $(".ExpCol_" + _ID[_ID.length - 1]).slideDown(); $("#ctl00_ct_ExpandICG_" + _ID[_ID.length - 1]).hide(); $("#ctl00_ct_CollapseICG_" + _ID[_ID.length - 1]).show(); return false; }) /*hide if click*/ $(document).on("click", ".CollapseICG", function (e) { var _ID = $(this).attr("id").split("_"); $(".ExpCol_" + _ID[_ID.length - 1]).hide(); $("#ctl00_ct_ExpandICG_" + _ID[_ID.length - 1]).show(); $("#ctl00_ct_CollapseICG_" + _ID[_ID.length - 1]).hide(); return false; }); });