検索結果に多かれ少なかれコンテンツ ブロックを表示するボタンがあります。[More] をクリックすると必要に応じて展開されますが、[Less] をクリックしても何も起こりません。preventDefault(e)
それは自分のラインと関係があるように感じます。コードは以下...
$(".btnMore").click(function (e) {
e.preventDefault(e);
if ($(this).attr('value', 'More')) {
$(this).parent().prev().switchClass("abstractText", "abstractTextNoHeight", 500, "swing");
$(this).attr('value', 'Less');
}
else if ($(this).attr('value', 'Less')) {
$(this).parent().prev().switchClass("abstractTextNoHeight", "abstractText", 500, "swing");
$(this).attr('value', 'More');
}
});