var $ButtonGroups = $(".button-group"); var $DropDownLists = $(".drop-down-group"); // -- Button Groups $(function () { $ButtonGroups.children().on("click", function () { var $this = $(this); var $parent = $this.parent(); if ($this.attr("disabled")) return; $parent.children().removeClass("active"); $this.addClass("active"); }); }); // -- Drop Down Groups $DropDownLists.each(function () { var $this = $(this); var $label = $this.find("label span").html(""); var $select = $this.find("select").empty(); var $dropDownTrigger = $select.siblings(".drop-down-trigger"); var $dropDownList = $("