Answers for "hide css with js"

0

hide css with js

function showStuff(id, text, btn) {
    document.getElementById(id).style.display = 'block';
    // hide the lorem ipsum text
    document.getElementById(text).style.display = 'none';
    // hide the link
    btn.style.display = 'none';
}
Posted by: Guest on February-21-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language