jetherald/JetHerald/wwwroot/js/expandable.js

8 lines
251 B
JavaScript

$(function () {
$(".showable-container > .showable")
.css("display", "none")
.removeClass("hide");
$(".showable-container > .show-button").click(function () {
$(this).parent().children(".showable").toggle();
});
});