I am busy to show and hide some boxes with a click on a button. It is working well but i must click 2 times the first time i want to hide a box?

This is my JS code:

$(function() {
    $('.title .hide').showContent();
});

$.fn.showContent = function() {
    return this.each(function() {
        var box = $(this);
        var content = $(this).parent().next('.content');

        box.toggle(function() {
            content.slideDown(400);
        }, function() {
            content.slideUp(400);
        });

    });
}; 

And de HTML

<div class="box">
    <div class="title">
        Title
        <span class="hide"></span>
    </div>
    <div class="content">Content</div>
</div>

Why is this? Can somewone help me?

And here is a demo: http://jsfiddle.net/wq7PF/ (click on the black button. When you click the first time it is doing nothing, but the second time then the content will collapse.)

link|improve this question

Please post the HTML. – j08691 Jan 25 at 22:09
@j08691 Done. :) – Maanstraat Jan 25 at 22:12
@Maanstraat where's the button you speak of in your HTML? – esqew Jan 25 at 22:18
The button is the span with the class hide: <span class="hide"></span> – Maanstraat Jan 25 at 22:19
I have made a JSFiddle to: jsfiddle.net/wq7PF – Maanstraat Jan 25 at 22:33
feedback

1 Answer

up vote 2 down vote accepted

Reverse your functions

box.toggle(function() {
  content.slideUp(400);
}, function() {
  content.slideDown(400);
});
link|improve this answer
jsfiddle demo jsfiddle.net/wq7PF/1 – Kyle Macey Jan 25 at 22:36
Stuppid mistake, thnx :) – Maanstraat Jan 25 at 22:38
feedback

Your Answer

 
or
required, but never shown

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