When you click you a checkbox I want the message to fade in slowly.
Why doesn\'t .fadeIn() work in this example?
HTML:
No fadeIn is done because the #message element is visible, hide it, add the content and fade it in:
$('#message').hide().html("You clicked on a checkbox.").fadeIn('slow');