div
ユーザーが要素以外の場所をクリックすると非表示になるようにしようとしています。toggle()
ユーザーがボタンをクリックすると、次のコードが実行されます。Details
要素が表示されていて、画面の他の部分に反応する場合は、ボタンのクリックをプラスのままにします。
$('.nav-toggle').click(function() {
//get collapse content selector
var collapse_content_selector = $(this).attr('href');
//make the collapse content to be shown or hide
var toggle_switch = $(this);
$(collapse_content_selector).toggle(function() {
if ($(this).css('display') == 'none') {
//change the button label to be 'Show'
toggle_switch.html('Show Details');
} else {
//change the button label to be 'Hide'
toggle_switch.html('Hide Details');
}
});
});