projectb/rtc_hide_and_show.js
2023-11-22 10:20:58 +05:30

27 lines
690 B
JavaScript

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);
}