blob: b3728373d60405334c55b1e60818e38a03744d59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
$(document).ready(function(){
$(".more-info h4").click(function () {
var contentdiv = $(this).parent().find(".more-content")
var h4 = $(this).parent().find("h4")
h4.toggleClass("compressed expanded")
if (contentdiv.is(":hidden")) {
contentdiv.slideDown("50")
} else {
contentdiv.slideUp("50")
}
})
});
|