I am trying to get a div to disappear on click and make another div in its place, I wrote and run the code using javascript;

document.getElementById("nextOneButton").onclick = function(){

    document.getElementById("mainFrameOne").style.display="none";
    document.getElementById("mainFrameTwo").visibility="visible";

}

//mainFrameTwo is initially set hidden in terms of visibillity
//nextOneButton is on top of the mainFrameOne in terms of position, when //clicked it should move to next frame. Some what like a slide show

      

+3


source to share


3 answers


Indeed, you need a button so that you can bind your function to the onclick event. Here's a possible solution:

<html>
<head>
<title></title>
<script>
function myFunction() { 
	document.getElementById("mainFrameOne").style.display="none"; 
	document.getElementById("mainFrameTwo").style.display="block"; 
}
</script>
</head>
<body>
<div id="mainFrameOne">
    <p>mainFrameOne</p>
</div>
<div id="mainFrameTwo" style="display:none;">
    <p>mainFrameTwo</p>
</div>
<button onclick="myFunction()">Click me</button>
</body>
</html>
      

Run codeHide result




Alternatively, you can use anchor tags to remove the need for a button:

<html>
<head>
<title></title>
<script>
function myFunction() { 
	document.getElementById("mainFrameOne").style.display="none"; 
	document.getElementById("mainFrameTwo").style.display="block"; 
}
</script>
</head>
<body>
<a id="mainFrameOne" onclick="myFunction()" href="#">
    mainFrameOne
</a>
<a id="mainFrameTwo" href="#" style="display:none;">
    mainFrameTwo
</a>
</body>
</html>
      

Run codeHide result


+1


source


        <div id ="activeContent" >


                <div id ="mainFrameOne"> <!-- POSITION MATTERS WHEN YOU WANT TO DO THE DISSAPEARING ACT WITH JAVASCRIPT -->

                    <img src="person.gif" id ="person" width="1350" height ="900">

                    <div id ="backOneButton"> <h4 class ="directionButtonsText">   Back  </h4> </div>

                    <div id ="nextOneButton"> <h4 class ="directionButtonsText">   Next   </h4> </div>

                    <div id = "mainFrameOneTitleBar">

                        <h3 id ="jakesLemonade">Jake Lemonade Stand</h3>

                    </div> <!-- End of MainFrameTitleBar -->

                    <h3 id = "firstTextJake"> This is Jake, the owner of a small lemonade stand.<br> Like many other small business owners, Jake wants to know <br>what the future holds for him. CloudFin can tell him exactly that. </h3>

                </div> <!-- End of MainFrameOne Div-->


                <div id ="mainFrameTwo"> 

                    <div id ="backTwoButton"> <h4 class ="directionButtonsText">   Back  </h4> </div>

                    <div id ="nextTwoButton"> <h4 class ="directionButtonsText">   Next   </h4> </div>

                    <div id = "mainFrameTwoTitleBar">

                        <h3 id ="lemsLemons">When life gives you lemons, Make lemonade</h3>

                        <script type="text/javascript">


                        </script>

                    </div> <!-- End of MainFrameTitleBar -->

                    <h3 id = "secondTextJake"> How much does each lemon cost?</h3>

                </div> <!-- End of MainFrameTwo -->



        </div> <!-- End of ActiveContent Div -->

      



0


source


If something doesn't work, you can use addEventListener. Example:

document.getElementById('button').addEventListener('click', changeVisibility(), null);
function changeVisibility()
{
    document.getElementById('divToHide').style.display = "none";
    document.getElementById('divToShow').style.display = "block";
}

      

0


source







All Articles