본문 바로가기

[Study & Job]/[Web Dev & Pentesting]

print_r()함수는 디버깅 하기 좋다!! 그리고 prototype.js와 jquery를 같이 쓸때가 있을수 있는데..그때 같이 쓸수 있는 방법은 jquery파일을 제일 먼저 include 하고,$.ajax나 $.POST, $.GET같은 함수들 앞에 있는 $를 jQuery로 바꿔주면 된다.그리고 나서 prototype.js파일을 include하면 된다!! 삽질했었다 ..ㅜㅜ
[CSS] 자동 줄바꿈
checkbox와 라벨[펌] ============================================= 남자 여자
jQuery.filestyle() 함수를 이용한 input type="file" 객체에 이미지 버튼 사용하기 [펌] jquery.filestyle.js 라이브러리를 이용하여 input file의 파일첨부 버튼을 이미지로 변경 가능하다. $(function(){ $("input[type=file]").filestyle({ image: "${pageContext.request.contextPath}/images/btn/file.gif", imageheight : 22, imagewidth : 74 }); }); [출처] jQuery.filestyle() 함수를 이용한 input type="file" 객체에 이미지 버튼 사용하기|작성자 realuv
input type file css 브라우저별 다른거 image 로 대체하는 꼼수[펌] /*input type="file" .fileinputs{position: relative;} .fileinputs *{vertical-align: middle;} .fakefile {position: absolute;top:0px;left:0px;z-index: 1;} .inputFile {position: relative;text-align:right ;filter:alpha(opacity:0);opacity:0;z-index:2;} */ 브라우저별 다른 file type 의 input을 image로 대체하는 꼼수
[css]input type="file" 찾아보기 버튼에 이미지 넣기[펌] 1st Source ============================================================ 실제 파일을 display:none 시키고, 버튼을 클릭하면, ============================================================ css 핵을 이용하여, display:none 대신 optical 을 0으로 만들었다....... 어쨋든 안보이기는 하지만, 파일필드는 존재한다....ㅡㅡ;;; ie6, 8, ff5.X, chrome14.X 테스트 통과~!!! 아놔;;;; display:none 이나 optical 0 나 똑같은건데...??? 빌어먹을 크롬..ㅡㅡ;;;; ie 말고 다른 브라우저 욕하기는 이번이 처음인것 같다.ㅠ 어쨋든 inp..
textarea 속성중.. resize:none; /* crome, sapari */ textarea의 크기를 크롬과 사파리에서 고정
Textarea 속성[펌]