일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 오라클
- 문자열
- HTML5
- MYSQL
- jquery
- spring form tag
- checbox
- php
- maven
- SSL
- RADIO
- 톰캣
- DB
- JSTL
- exception
- 날짜
- 이클립스
- json
- switch
- 한글
- Oracle
- @RequestBody
- html
- 웹 플랫폼 설치 관리자
- 호환성
- null
- 전자정부 표준프레임워크
- 네이버스마트 에디터
- java
- 스크립트
- Today
- Total
목록Script & jQuery (46)
개인적인 정리
폼 요소 disable, readonly 설정 $(this).attr("disabled", true);$(this).attr("disabled", false); $(this).attr("readonly", true);$(this).attr("readonly", false);
offset() $('.main-visual').find('img').offset().left 상대좌표 확인은 position() 이라고 한다.
$( window ).resize(function() {$('#layer_greetings').css({'left':$('.main-visual').find('img').offset().left});});
$('#layer_greetings').css({'left':$('.main-visual').find('img').offset().left}); $( window ).resize(function() {$('#layer_greetings').css({'left':$('.main-visual').find('img').offset().left});});
jquery image slide http://owlgraphic.com/owlcarousel/demos/images.html
$('input:radio[name="typeSelect"]').bind('click', function(){if($(this).val() =="month") {$('#searchMonth').css({"display":"block"});$('#searchGigan').css({"display":"none"});}else {$('#searchMonth').css({"display":"none"});$('#searchGigan').css({"display":"block"});}});
$("input[type='button'], input[type='submit']").css({'cursor':'pointer'});