I have an arrow on my site that I'd like if onclick, it hides one element, and shows another. Hitting it again, will hide the element that was shown and show the element that was hidden.
For example, I have
<div id="arrow"><a href="#">▾</a></div>
<div id="ad"></div>
<div id="description">Hidden</div>
<div id="nav">Also Hidden</div>
So at first, the ad is showing, and then one you've clicked the arrow, I'd like the ad to hide, and then unhide the description and nav.
elem.style.display = 'none'– elclanrs Sep 9 '12 at 21:38elem.style.display = "none"– Jeremy J Starcher Sep 9 '12 at 21:40toggle()), what makes you think using just JavaScript is going to be easier to implement? Specially that jQuery is less code and cross-browser compatible. Don't get me wrong, I'm all for just using JavaScript but if it is purely for reasons that you could not get jQuery working I think you will run into the same issues using just JavaScript. – François Wahl Sep 9 '12 at 21:46