Link to home
Start Free TrialLog in
Avatar of danwpeters
danwpetersFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Modify show/hide script to close a div when open a new one

Hi,

I have a show/hide script that im using, using onmouseover to show/hide divs.

What I need help is, when user mouses over toggle2 link, it closes toggle1 div and opens toggle2 div, and so on.

At the moment all toggle divs will open and only close when you mouseover the toggle link again.

I have attached the full code im working on for ease of understanding.
<html><head>
<title>Rollover</title>
<style type="text/css">
.toggleBox {
	background: #ccc;
	margin: 10px 0;
	padding: 10px;
}
.toggleBox p.toggleLink {
	margin: 0;
	padding: 10px;
}
.toggleBox p.toggleLink a.link {
	text-decoration: underline;
	cursor: pointer;
}
.toggleBox .toggleContent {
	background: #fff;
	padding: 10px;
}
.toggleBox .toggleContent p {
	margin: 0;
}
</style>
<script type="text/javascript">
	function showhide(id){
		if (document.getElementById){
			obj = document.getElementById(id);
			if (obj.style.display == "none"){
				obj.style.display = "";
			} else {
				obj.style.display = "none";
			}
		}
	}
</script>
</head><body>
 
<div class="toggleBox">
	<p class="toggleLink"><a class="link" onmouseover="showhide('onmouseover'); return(false);">Show/hide on mouseover</a></p>
	<div class="toggleContent" id="onmouseover">
		<p>On mouseover content toggle</p>
	</div>
</div>
 
<div class="toggleBox">
	<p class="toggleLink"><a class="link" onmouseover="showhide('onmouseover2'); return(false);">Show/hide on mouseover</a></p>
	<div class="toggleContent" id="onmouseover2">
		<p>On mouseover content toggle</p>
	</div>
</div>
</body></html>

Open in new window

Avatar of danwpeters
danwpeters
Flag of United Kingdom of Great Britain and Northern Ireland image

ASKER

togglle1, toggle2 is referring to onmouseover, onmouseover2 id's.
Avatar of bluefezteam
bluefezteam

Hmm well your function is only targetting the id it has been passed, it's unaware of the prescence of anything else in the document only what it's told.

If you know you have a set amount of boxes you can look at the ID being passed in and then alter the states of the other boxes.

On the principle that only 1 box is ever open at 1 time, then you can adapt your existing function to look at the state of the current box - it's already in there # if (obj.style.display == "none") # this determines if it's there or not (visible) if it's currently not visible then it opens it...

You need to just adapt it to close all boxes (which you can do because you have the IDs) and then run the existing line

obj.style.display = "";

which makes the current box (the one you want to open) visible.

Next time you click a different box, all boxes close (so the 1st one you opened) and then your script opens the current box (the new one)
what Im basically trying to say is the element of your function (below) needs to close ALL your boxes first and then it will open the one you want.

If none are open it just opens it - this will give the effect that when a box is open it will close all of them and open the new one because thats the only box the function knows to operate (open)
if (obj.style.display == "none"){
 document.getElementById("box1").style.display = ""; 
 document.getElementById("box2").style.display = ""; 
 document.getElementById("box3").style.display = ""; 
 obj.style.display = ""; // this makes current box visible
} else {
 obj.style.display = "none";
}

Open in new window

Hi, thanks, but this doesn't seem to be working correctly, I get how your adapted code works, but am really only starting with JavaScript, could you help me a little more please?
Yeah sure let me figure out the mechanics and I will get back to you with a working model - my example was more of a guidline.
ASKER CERTIFIED SOLUTION
Avatar of bluefezteam
bluefezteam

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
If you need to add more divs then they need to be added to the function, it all stems from the fact that the original function only targetted the div it was passed during mouseover.

The function was given no other info to act on so it didnt know about the other items.
Thanks, is there any way of stopping the box from hiding if you mouse over an already active link?
hey thats a seperate question, I only get 100 points :0P

The easiest option is to not to bother with mouseover, it's too fiddly especially if you accidentally touch the area. Opt for onClick instead - much more accurate to a users needs - when a user clicks it you know for a fact that they want to open or close that box.


<div class="toggleBox">
	<p class="toggleLink"><a class="link" onclick="showhide('onmouseover'); return(false);">Show/hide on mouseover</a></p>
	<div class="toggleContent" id="onmouseover">
		<p>On mouseover content toggle</p>
	</div>
</div>
 
<div class="toggleBox">
	<p class="toggleLink"><a class="link" onclick="showhide('onmouseover2'); return(false);">Show/hide on mouseover</a></p>
	<div class="toggleContent" id="onmouseover2">
		<p>On mouseover content toggle</p>
	</div>
</div>

Open in new window

If you post that as a new question (which it is), I can receive additional points for further assistance.

I would say the onClick is much better for the user anyway.
Awsome help ;-)
I will try and opt for an onclick probably, thanks again ;-)