I need to be able to fade between classes and seamlessly transition any and all styles being applied to the element and its children. How can this be done using jQuery? I kn
Try fadeIn.
$(".myClass").fadeIn("slow");
http://api.jquery.com/fadeIn/
Although depending on the complexity you may need jQuery UI as other have mentioned.