Since I learned jQuery I've always wondering how does jQuery execute a function after another just by adding dots .
(dont know it real name, sorry for that);
$("#somediv").fadeIn("fast").css("background","blue");
When fade effect finished then the CSS function execute. Its like if you can execute whatever function you want one after another.
How can I do that?
Note: If I named something wrong, please correct me, I just want to learn.