I have made a function to slidedown different div's by clicking different links. Following is basic code. However, there's a little problem that, for example, if i click on first link, it slides down div. Now If i click on next link, it keeps the first div, and slides down the second div. However I want to do it so that, if there is any div slided down, and I click on any link, it should slide up the previous div and slide down the newer one. I will appriciate your help in this regard. Thanks.

$("a.about").click(function(){
    $("#about").slideDown("slow");
    });

$("a.info").click(function(){
    $("#info").slideDown("slow");
    });

$("a.contact").click(function(){
    $("#contact").slideDown("slow");
    });
link|improve this question

60% accept rate
if there are just three links, why not add calls to slideUp event for other id elements, e.g. $('#info').slideUp('slow'); in $('a.about').click and similar? – Stoic Jan 4 '11 at 21:20
There are about 6 links.. I thought that way might be messy and not so efficient.. is that so? – John Jan 4 '11 at 21:27
yeah.. append a common class to these sliders.. then use a slideUp on this common class, before your slideDown calls. – Stoic Jan 4 '11 at 22:15
feedback

4 Answers

You might want to look into the jQuery UI accordion.

link|improve this answer
feedback

If the divs you're sliding are siblings, and the correspondence between classnames and IDs as described, you can do something like this:

var links = ['a.about','a.info','a.contact','a.etc'];

$( links.join(',') ).click( function(e){
  e.preventDefault();
  $('#' + this.className).siblings().slideUp('slow').end().slideDown('slow');
});

If all the links are within a container of some kind, you can simplify further:

$('div#nav-container').find('a').click( function(e){...} );
link|improve this answer
Unfortunately, this will break if he ever adds more than one class to the anchors (which he may or may not have already) – Alex Vidal Jan 4 '11 at 22:48
This is true. In the absence of his html, my suggestion is based on a few assumptions -- the simple case for those classes being one. – Ken Redler Jan 5 '11 at 0:30
feedback

you can do this generally by adding a class to all the divs you want to be able to control, and then slideUp()'ing that class at the beginning of every click.

$('a.xxx').click(function(){
    $('.sliders').slideUp()
    // slide down other div here
});

this will actually slide up ALL divs with the class 'sliders' but will give the illusion of the previously clicked div sliding up as only one should ever be down.

link|improve this answer
feedback

The easiest approach would be to give an extra generic classname to all of the elements you are trying to slide up/down, then connect the actual anchors to the elements, using the href attribute on the anchor. The below bit of javascript (with the changes to the HTML) will perform the same functions as your current javascript, as well as make it easy to add more sliders:

# the html
<a class='about slide-control' href='#about'>toggle the about section</a>
<a class='info slide-control' href='#info'>toggle the info section</a>
<a class='contact slide-control' href='#contact'>toggle the contact section</a>

<div class='slider' id='about'>
    this is the about section
</div>
<div class='slider' id='info'>
    this is the info section
</div>
<div class='slider' id='contact'>
    this is the contact section
</div>    

# the javascript
$('a.slide-control').click(function() {
    $('div.slider').slideUp();
    var target = $(this).attr('href');
    $(target).slideDown('slow');
});

You can add a new slider simply by adding the proper HTML:

<a class='slide-control' href='#new_section'>Tell me more about this new section!</a>

<div class='slider' id='new_section'>
    This is a great paragraph about the new section on our website!
</div>

Alternatively, you can use your existing classes and just add the .slideUp method call for your other elements before your .slideDown:

$('a.about').click(function() {
    $("#info").slideUp('slow');
    $("#contact").slideUp('slow');
    $("#about").slideDown('slow');
});

// repeat for each click handler
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.