일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- group_concat 구분자
- 세로 중앙 정렬
- usb efi 시스템 파티션 삭제
- 구글 OTP 인증
- 자바스크립트비밀번호검증
- php 특정 문자열 취환
- javascript
- 부트스트랩4 세로 중앙 정렬
- svn 충돌 해결 resolved
- PHP 구글 OTP 연동
- bootstrap modal
- PHP 정규식 예제
- JQuery checkbox 컨트롤
- svn 충돌 해결 resolve
- apache mod rewrite
- PHP 구글 OTP 인증
- wkhtmltopdf 실행 오류
- 파라미터 & 오류
- 비밀번호검증정규식
- bootstrap
- magic bytes
- 아파치 웹 서버의 정보 숨기기
- libxrender1
- html pdf 변환
- mysqldump: Got error: 1045
- (using password: YES)" when trying to connect
- 비밀번호정규식
- 우분투 mysql 비밀번호 없이 로그인 될때
- mysql root 비밀번호 변경
- modsecurity 설치
- Today
- Total
목록Program Language/JavaScript & Jquery (31)
투덜이 개발자
//$searchChkboxVal= explode("|","A|B|C|D|E|F|G|H|I|J|K|L|M"); $searchChkboxVal= explode("|","B|C|D|E|F|G|H|I|J|K|L|M"); 전체
// 주말(토,일)만 선택 안하기 beforeShowDay: function(date){ var day = date.getDay(); return [(day != 0 && day != 6)]; } // 매주 화요일, 금요일만 선택하기 beforeShowDay: function(date){ var day = date.getDay(); return [(day != 0 && day != 1 && day != 3 && day != 4 && day != 6)]; }, // 특정제한 날짜 var disabledDays = ["2021-10-28", "2021-10-29", "2021-11-3", "2021-11-13"]; // 특정일 선택막기 function disableAllTheseDays(date) { var..
1. value값으로 체크하기 $("input:radio[name='ans_type_code'][value='" + v_ans_type_code + "']").prop('checked', true); $(":radio[name='ans_type_code'][value='" + v_ans_type_code + "']").prop('checked', true); 2. value값으로 체크 확인 $('input:radio[name=이름]').is(':checked'); $('input:checkbox[name=이름]').is(':checked'); 3. 체크된 라디오버튼 value 값 가져오기 $('#radioTestId:checked').val() ; $(":radio[id='radioTestId']:che..
스와이프 구현 https://dev.kidis.co.kr/test/Swipe/ Swipe 2 dev.kidis.co.kr 출처 : github https://github.com/thebird/Swipe thebird/Swipe Swipe is the most accurate touch slider. Contribute to thebird/Swipe development by creating an account on GitHub. github.com
datepicker 옵션 https://jqueryui.com/themeroller/ ThemeRoller | jQuery UIFirst Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet. Second Phasellus mattis tincidunt nibh. Third Nam dui erat, auctor a, dignissim quis. A button element An icon-only button Standard Automatic Insurance Book Now! Lorejqueryui.com
https://nowonbun.tistory.com/636 [Javascript] 서명 마크(sign)를 만드는 방법(canvas태크) 안녕하세요. 명월입니다. 이 글은 html에서 서명 마크(sign)를 만드는 방법(canvas)에 대한 글입니다. 웹 설계를 하면 승인에 관계된 시스템이나 서명이 필요한 프로그램을 만들 경우가 많이 있습니 nowonbun.tistory.com save
HTML form 내에서 ajax를 사용하다 간혈적으로 Error code 0, error undefined 메세지 발생 error: function (request, status, error) { alert('code: '+request.status+"\n"+'message: '+request.responseText+"\n"+'error: '+error); }// 요청 실패. 원인 : ajax 페이지 호출이 완료되기 전에 페이지 전환으로 생기는 문제 해결 : ajax 호출되는동안 페이지 이동을 못하게 숨기거나 막아서 해결