본문 바로가기

분류 전체보기216

input 숫자만 입력 가능하게 하고 숫자 아니면 알림창 띄우기 //input 숫자만 입력 $(".numberOnly").on("keyup", function(event) { if (event.which && (event.which > 47 && event.which < 58 || event.which == 8)) { }else{ alert('숫자만 입력해주세요.'); $(this).val($(this).val().replace(/[^0-9]/g,"")); } }); 참고사이트 http://hihoyeho.tistory.com/entry/%ED%85%8D%EC%8A%A4%ED%8A%B8%EB%B0%95%EC%8A%A4input-text%EC%97%90-%EC%88%AB%EC%9E%90%EB%A7%8C-%EC%9E%85%EB%A0%A5-%EA%B0%80%EB%8A%A5.. 2020. 4. 3.
인스타그램 api 이미지 불러올 때 크기 설정 instafeed.min.js 에서 resolution 수정 2020. 4. 3.
파일 다운로드 file download $(document).ready(function(){ $("#menuLink01").click(function(e){ location.href = '/파일명.hwp'; e.preventDefault(); }); }); 등록인변경신청서양식 다운로드 /*스크립트가 밑에 있어야함*/ http://cybershin.tistory.com/105 http://greatkim91.tistory.com/50 2020. 4. 3.
퀵메뉴 일정 top까지만 움직이게 하기 #join-bt {position: fixed; right: 40px; top: 67%; z-index: 99; font-size: 20px; width: 110px; height: 110px; border-radius: 60px; padding-top: 28px; /* margin: 0; */} #join-bt.abs {position: absolute; right: 40px; top: inherit; bottom: 180px;}​ $(document).ready(function(){ var quick = $("#join-bt"); //var qTop = quick.outerHeight(); var qTop = $(window).height(); var footerTop = $(".footer_ins".. 2020. 4. 3.
네이버 지도 api 마커 애니메이션 2020. 4. 3.
input type="file" 파일 첨부 폼 .file-wrap {overflow: hidden;} .file-wrap .stit {width: 75px; padding-top: 3px;} .file {position: relative; vertical-align: middle;} .file label {width: 100%; border: 1px solid #d8d8d8; display: inline-block; line-height: 36px; padding: 0 15px; border-radius: 5px; height: 36px;} .file input[type="file"] {width: 0.1px; height: 0.1px; opacity: 0; overflow: hidden; position: absolute; z-index: -1;}.. 2020. 4. 3.
전화번호, 주소, 이메일 자동 링크 방지 meta tag 2020. 4. 3.
모바일에서만 작동하는 select tab $("#tab-select select[name=select_table]").on('change', function(){ //alert($(this).val()); var tabLink = $(this).val(); //var tabTable = $('.table-wrap');​ if($(tabLink).length>0){ $('.mypage-form .table-wrap').removeClass('show'); $(tabLink).addClass('show'); } //return false; }); @media screen and (max-width: 970px){ .board-wrap .table-wrap {display: none;} .board-wrap .table-wrap.show {displ.. 2020. 4. 3.
다음 지도 api 2020. 4. 3.