[jQuery] toggle + fade = possible?
toggle() works great but im wondering if its possible to combine it
with fadeIn / fadeOut so that the change isnt so abrupt? i tried just
appending it after toggle() in the code below but that doesnt work.
anyone?
$(".bio-toggler").click(function () {
$("#bio-form").toggle()
});