File size: 591 Bytes
c83e641
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
function showElementById(elementId) {
    const element = document.getElementById(elementId);
    if (element) {
        element.style.display = 'block';
    } else {
        console.error(`[HTMLInjector] Helper Error: Element with ID '${elementId}' was not found in the DOM.`);
    }
}


function hideElementById(elementId) {
    const element = document.getElementById(elementId);
    if (element) {
        element.style.display = 'none';
    } else {
        console.error(`[HTMLInjector] Helper Error: Element with ID '${elementId}' was not found in the DOM.`);
    }
}