일반 js로 만든것을 사용하다가 예전에 만들어놓았던 jquery용을 찾아보니 너무 간단하게 되어 있어서 포스팅해준다. 따라갑시다. 짧고 간단해졌다. 그래서 JQuery를 사랑한다. // 2012-05-08 갱신 //scroll the message box to the top offset of browser's scrool bar $(window).scroll(function() { $('#scroll').animate({top:$(window).scrollTop()+"px" },{queue: false, duration: 350}); }); //when the close button at right corner of the message box is clicked $('#scroll').click(fun..