/    Sign up×
Community /Pin to ProfileBookmark

Any idea why my script is no working !?

function init() {

if
(document.getElementById(‘Div1’).style.display == “block”)

{document.getElementById(‘Div2’).style.display = “none”;}

else
{

if
(document.getElementById(“Div3”).style.display == “block”;)
{
document.getElementById(‘Div1’).style.display = “none”;
document.getElementById(‘Div2’).style.display = “none”;
}

}

}

???

to post a comment
JavaScript

3 Comments(s)

Copy linkTweet thisAlerts:
@firebladeJan 28.2009 — Script looks correct. But hard to read. I just aligned it.
[CODE]function init()
{
if
(document.getElementById('Div1').style.display == "block")
{
document.getElementById('Div2').style.display = "none";
}
else
{
if (document.getElementById("Div3").style.display == "block")
{
document.getElementById('Div1').style.display = "none";
document.getElementById('Div2').style.display = "none";
}
}
}[/CODE]


check once again with this code. If still not working check the IDs of tags weather you have given correct ID for tags.
Copy linkTweet thisAlerts:
@slaughtersJan 28.2009 — Maybe Div1 does not have a display of "block" to begin with ? It might just have a display of "".

Hard to tell with out the HTML that goes with it.
Copy linkTweet thisAlerts:
@firebladeJan 29.2009 — can you produce the HTML here?
×

Success!

Help @liccy 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 6.17,
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: @nearjob,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

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