0

divを非表示および表示する機能があります

function showDiv(popupName) {   

    if (popupName.is(':hidden')) {  
        var hid = document.getElementById("filter");
        hid.style.display = 'block';
    } else {
        var hid = document.getElementById("filter");
        hid.style.display = 'none';
    }
}

他のページを移動して戻ってきたときに、非表示の div をリロードして非表示の div ページに戻る方法はありますか?

4

1 に答える 1