Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,990 questions

51,935 answers

573 users

How to create toggle hide / show an HTML element in JavaScript

1 Answer

0 votes
<!DOCTYPE html>
<html>
<head>
</head>
<body>

<button onclick="myFunction()">Click to toggle</button>

<div id="divid">
Show Hide Text
</div>
<script>
function myFunction() {
    var id = document.getElementById("divid");
    if (id.style.display === "none") {
        id.style.display = "block";
    } else {
        id.style.display = "none";
    }
}
</script>
</body>
</html>

 



answered May 29, 2018 by avibootz

Related questions

2 answers 269 views
1 answer 154 views
1 answer 157 views
2 answers 7,124 views
2 answers 264 views
1 answer 228 views
228 views asked Mar 1, 2021 by avibootz
...