がっつり途中下車②

$(document).ready(function() {
var target = $(‘#top-writer-caption’);
target.show();
// クリックすると表示されるボタン
$(‘.js-opener’).click(function(e) {
// aタグのときは開閉しない
if (e.target.nodeName == ‘A’) return;
$(‘.writer-caption’).toggleClass(‘open with-cloud’);
});
});