I have a section on my website that when a user clicks I would like it to expand, I\'m using the jQuery\'s toggleClass for this...
toggleClass
expandable: f
.toggleClass() will not animate, you should go for slideToggle() or .animate() method.
.toggleClass()
slideToggle()
.animate()