Question:Assume that you want that first the tag with "id1" fades out and then the tag with "id2" fades in. Which of the following code snippets allow(s) you to do so?
A $('#id1').fadeOut('fast'); $('#id2').fadeIn('slow');
B $('#id2').fadeIn('slow'); $('#id1').fadeOut('fast');
C $('#id1').fadeOut('fast', function() {$('#id2').fadeIn('slow')});
D $('#id2').fadeIn('slow', function() {$('#id1').fadeOut('fast')});
+ AnswerC
+ Report