1) { var childrenHeight = 0; $(this).children(“.event_container”).not(“:last”).each(function(){ childrenHeight += $(this).innerHeight(); }); var height = $(this).height()-childrenHeight-($(this).parent().parent().width()$(this).children(“.event_container”).last().height()) $(this).children(“.event_container”).last().css(“height”, height + “px”); } });*/ //show/hide event hours on mobile device $(document.body).on(“click”, “.tt_timetable.small .plus.box_header”, function(event) { var $this = $(this); var $list = $this.next(“ul.tt_items_list”); $list.slideDown(500); $this.removeClass(“plus”); $this.addClass(“minus”); }); $(document.body).on(“click”, “.tt_timetable.small .minus.box_header”, function(event) { var $this = $(this); var $list…
Details