I have this code that performs an ajax call and loads the results into two duplicate divs every time a dropdown is changed. I want the results to be faded into the div, to g
You'll have to hide() it before you can use fadeIn().
hide()
fadeIn()
UPDATE: Here's how you'd do this by chaining:
$("#charges-gsm-faq").hide().html(html).fadeIn(); $("#charges-gsm-prices").hide().html(html).fadeIn();