[jQuery] 페이지 하단으로 이동하는 버튼
HTML <div id="go-bottom">가자</div> jQuery $("#go-bottom").click(function(){ $('html, body').scrollTop( $(document).height() ); });
HTML <div id="go-bottom">가자</div> jQuery $("#go-bottom").click(function(){ $('html, body').scrollTop( $(document).height() ); });
if ( window.location.pathname == '/' ) { var root = document.documentElement; root.className += ' index'; } wondow.location.pathname에 지정된 경로의 URL로 접속 할 경우 index라는 class를 html에...
jQuery의 attr() 속성을 사용하면, 특정 소스가 가진 값을 뽑아올 수 있다. 아래 예제를 참고해보자. <img src="http://abc.com/original.png" alt="original image" id="original-image"> <img src="h...
클릭해서 보여주고, 다시 클릭하면 숨기는게 가능한 간단하지만 유용한 자바스크립트 토글 소스. SCRIPT function toggle_visibility(id) { var e = document.getElementById(id); if(e.style.display == 'bl...
function copy_trackback(address) { var IE=(document.all)?true:false; if (IE) { if(confirm("이 글의 주소를 클립보드에 복사하시겠습니까?")) window.clipboardData....
1. 부드럽게 올리기 <script> var scrollUpDelay = 1; var scrollUpSpeed = 30; function scrollUp() { if(document.body.scrollTop<1) { return; } document.body.scrollTop=document.body.scrol...