Here is my jQuery:
$(\'.ask\').click(function() { $(\'.addtitle\').slideToggle(\'fast\', function() { // Animation complete. }); });
$('.ask').click(function() { var $this = $(this); $this.find('.addtitle').slideToggle('fast', function() { // Animation complete. if($this.text() === '-') $this.text('+'); else $this.text('-'); }); });