function rtc_hide_and_show(rtcid) { var id = localStorage.getItem('rtc'); var hideid = document.getElementById(id); // console.log('hide id :' + id) $(hideid).hide(); var showid = document.getElementById(rtcid); console.log('hide id :' + id) $(showid).show(); localStorage.setItem('rtc',rtcid); }; function add_button_hide_and_show(BtnID){ // console.log('show id :'+BtnID) var id = localStorage.getItem('btn'); var hideid = document.getElementById(id); // console.log('hide id :' + id); $(hideid).hide(); var showid = document.getElementById(BtnID); $(showid).show(); localStorage.setItem('btn',BtnID); }