(Show Less)
" ).appendTo( "dl.edan-search-freetext\\.topic" );
//jQuery( "
- Location
- , ,
" ).insertAfter( "dl.edan-search-freetext\\.topic" );
var threshold = 3;
if (jQuery("dl.edan-search-freetext\\.topic").children().not(".show").length > threshold) {
jQuery(".show.more").css("display", "block");
}
jQuery(".show.more").on("click", function() {
jQuery(this).parent().children().not(".show").css("display", "block");
jQuery(this).parent().find(".show.less").css("display", "block");
jQuery(this).hide();
});
jQuery(".show.less").on("click", function() {
jQuery(this).parent().children(":nth-child(n+" + (threshold + 1) + ")").not(".show").hide();
jQuery(this).parent().find(".show.more").css("display", "block");
jQuery(this).hide();
});
}else{
jQuery("dl.edan-search-freetext\\.topic").hide();
}