I'm trying to add a Class to an existing div container and insert a new div (on success) below the existing one.

<script>
$(document).ready(function(){
  $(".entry").click(function(){
     $('#content').addClass("col2",1000).after('<div class="box col2">test</div>', function(){
        $(this).slideDown();
     });
  });
});
<script>

Unfortunately this code doesn't work correctly. The slideDown function doesn't work and the new div does already appear even if the previous function hasn't already finished.

Would be nice if someone could help me.

link|improve this question

80% accept rate
feedback

3 Answers

up vote 1 down vote accepted

Your closing tag should be </script>

Also, the effect that you want may be the folowing:

$(".entry").click(function() {
    $('#content').addClass("col2").after('<div class="box col2">test</div>');
    $('.box:last').hide().show(300);
});

Fiddle here


Edit: Based on you comment, I guess that maybe you want this:

$(".entry").click(function() {
    $('#content').addClass("col2");
    setTimeout(function() {
        $('#content').after('<div class="box col2">test</div>');
        $('.box:last').hide().show(300);
    }, 500);
});

Fiddle here

link|improve this answer
It is </script> but I missed the / when I wrote it here on Stackoverflow – Damian Frizzi Oct 11 '11 at 22:25
1  
I think this shuld be a comment – Toni Michel Caubet Oct 11 '11 at 22:26
@Damian Why not copy/paste it? – pinouchon Oct 11 '11 at 22:33
copied/pasted it but it's unfortunately not the effect I'm looking for. I simply want to show the the new div with class box col2 after the div with id content has changed the class to col2. – Damian Frizzi Oct 11 '11 at 22:35
This code is working. Thank you! – Damian Frizzi Oct 11 '11 at 22:52
feedback

after() doesn't take a callback.

Instead, you need to create a new jQuery object for the new element, call slideDown() on it, and pass it to after().
For example:

$(...).after(
     $('<div class="box col2">test</div>').slideDown()
);
link|improve this answer
Didn't know that after() doesn't take a callback. Thank you. I changed the code but the slideDown still doesn't work. – Damian Frizzi Oct 11 '11 at 22:24
feedback
$(document).ready(function(){
  $(".entry").click(function(){
     $('#content').addClass("col2").after('<div class="box col2">test</div>').slideDown();
  });
});

This should do the trick. .addClass() only takes one input and .after() does not accept a callback function. However with the above example the class will be added and the html will be appended before the .slideDown() function is called.

Some Documentation Links:

link|improve this answer
I tried your code but it still doesn't work correctly. The slideDown doesn't go well and the div with class box col2 appears to early. Do you know how to solve that? – Damian Frizzi Oct 11 '11 at 22:27
By the way addClass does takte 2 inputs (combined with the jquery UI) docs.jquery.com/UI/Effects/addClass – Damian Frizzi Oct 11 '11 at 22:29
feedback

Your Answer

 
or
required, but never shown

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