So basically I'm just starting out with jQuery and JS and I have hit a problem.
I have a small menu that when the user clicks one of the links, the content slides down. If there is already a box open, it slides up.
My problem is, when you click on the same link to close it again, it slides-up, but then because jQuery code tells it to slide down again, it does. This means that you can never close one the bits of content once one of them are open.
My jQuery Code is:
jQuery(document).ready(function(){
jQuery(".radius5").hide();
jQuery("a#contact-btn").click(function() {
jQuery(".radius5").slideUp();
jQuery("div#contact").slideDown("slow");
});
jQuery("a#about-btn").click(function() {
jQuery(".radius5").slideUp();
jQuery("div#about").slideDown("slow");
});
jQuery("a#portfolio-btn").click(function() {
jQuery(".radius5").slideUp();
jQuery("div#portfolio").slideDown("slow-up");
});
});
and HTML code (simplified of course):
<a id="contact-btn" class="btn-slide" href="#">Contact</a>
<a id="about-btn" class="btn-slide" href="#">About</a>
<a id="portfolio-btn" class="btn-slide" href="#">Portfolio</a>
<div id="contact" class="radius5">Contact Us</div>
<div id="about" class="radius5">About Us</div>
<div id="portfolio" class="radius5">Our Portfolio</div>
I also have a jsFiddle link.
I'm sure it's really easy to answer. I've tried using addClass and removeClass but couldn't seem to get it quite right. Can anyone help?
Regards,
Tom Oakley