Hi!
I'm a newbie to jQuery and I wanted to make something simple: make a
ajax query to get some values from a DB, fadeout the old values,
change the text with the new values and then fadein the values.
Unfortunately this doesn't work:
$("#"+div).fadeOut("slow",function () {
$("#"+div).text(newvalue,function () { $
("#"+div).fadeIn("slow"); });
});
The text fades out but then never fades in again.
Anyone has any idea why this happens?