/    Sign up×
Community /Pin to ProfileBookmark

Simple Toggle Request…

Can someone please shoot me the code to have one toggle close when the other is clicked?
I’ve been searching everywhere, but I can’t seem to find an example.

Check out my test page here:
[url]http://www.cuush.com/toggle/index.php[/url]

If #1 has already been opened, I simply want it to close when I click #2.
That way there can NEVER be two toggles open at the same time.

Is this possible?

Thx.

to post a comment
JavaScript

3 Comments(s)

Copy linkTweet thisAlerts:
@phpnoviceMay 12.2006 — Not Found

The requested URL /toggle/index.php was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.



--------------------------------------------------------------------------------

Apache/1.3.34 Server at www.cuush.com Port 80
Copy linkTweet thisAlerts:
@hipsoulauthorMay 12.2006 — Sorry about that, I'm tired and not following conventions...

a recipe for disaster! ?

http://www.cuush.com/toggle/toggle.php

thx.

P.S. the javascript is in the source.
Copy linkTweet thisAlerts:
@phpnoviceMay 12.2006 — Perhaps this will work:
<script type="text/javascript">
<!--//
var curToggle = null;
//
function toggle(targetId) {
if(curToggle && curToggle.id != targetId) {
curToggle.style.display="none";
curToggle = null;
}
target = document.getElementById(targetId);
if (target.style.display == "none"){
target.style.display="";
curToggle = target;
} else {
target.style.display="none";
curToggle = null;
}
return true;
}
//-->
</script>
×

Success!

Help @hipsoul spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.1,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...