The Web Design Group

... Making the Web accessible to all.

Welcome Guest ( Log In | Register )

> Hide/Show Toggle
Slushie
post Apr 1 2020, 08:39 PM
Post #1





Group: Members
Posts: 2
Joined: 1-April 20
Member No.: 27,262



Hopefully this will be an easy fix for someone.
I'm trying to implement the Hide/Show toggle at https://www.w3schools.com/howto/tryit.asp?f...oggle_hide_show

The script part of it is

<script>
function myFunction() {
var x = document.getElementById("myDIV");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
</script>


My question is, the page always starts with the item being shown, not hidden. How do I make it when the page is first loaded the item is hidden, not shown?

Thanks for any help with this.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
 
Reply to this topicStart new topic
Replies
Slushie
post Apr 2 2020, 09:01 PM
Post #2





Group: Members
Posts: 2
Joined: 1-April 20
Member No.: 27,262



Thank you pandy! smile.gif I appreciate it.

That worked perfectly.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Apr 2 2020, 09:05 PM
Post #3


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,730
Joined: 9-August 06
Member No.: 6



Good. smile.gif
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post

Posts in this topic
Slushie   Hide/Show Toggle   Apr 1 2020, 08:39 PM
pandy   Basically you just need to set #myDIV to display: ...   Apr 1 2020, 09:28 PM
Slushie   Thank you pandy! :) I appreciate it. That wor...   Apr 2 2020, 09:01 PM
pandy   Good. :)   Apr 2 2020, 09:05 PM


Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



- Lo-Fi Version Time is now: 26th April 2024 - 12:35 AM