잘못된 사용법
$second.html ( 값);
$second.on('click',function(){
alert('안녕하세요 여러분');
});
$second.fadeIn('slow');
$second.animate({높이:'120px'},500);
권장 사용법
$second.html (값 );
$second.on('click',function(){
alert('안녕하세요 여러분');
}).fadeIn('slow').animate({height:' 120px' },500);