일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자바스크립트
- curl
- javascript
- 안드로이드
- 안드로이드 푸시
- not working
- Mail Server
- android 효과음
- 폼메일
- soundpool
- C#
- 우분투
- 자동 생성
- php 취약점
- 안드로이드 푸쉬
- UML
- mysql
- FCM
- roundcube
- xe
- html5
- php 시큐어코딩
- chart.js
- dovecot
- C# IO
- WebView
- PHP
- Android
- 설치
- 안드로이드 gcm
- Today
- Total
목록jquery (38)
그러냐
listArr[2] 값이 2인 경우 분명 찍어보면 2가 맞는데 inArray에 잡히지 않는다 변수 형식때문임 parsInt로 형변환 해주면 된다 var tmpArr = [1,2,3,4,5]; if($.inArray(parseInt(listArr[2]), tmpArr) != -1){ alert(); }
기본적인 멀티파일 기능 http://lampspw.wallonie.be/dgo4/tinymvc/myfiles/plugins/multifile-2.2.1/docs.html#Customize 드래그앤드랍 탑10 & 탑17 모음 블로그주소 https://www.sitepoint.com/10-jquery-file-uploads/ https://colorlib.com/wp/jquery-file-upload-scripts/
출처 http://www.dontorz.com/bbs/?mode=view&bbsid=study&bltn_seq=208 1. jQuery - Lazy Load 플러그인 이란?제이쿼리의 lazyload 플러그인의 역할은 단순히 이미지를 페이지의 load시 호출이 아닌동적인 호출로 바꿔준다는 점 하나뿐이다.(이미지가 현재 보고있는 스크롤에 도달하면 호출 시작) 단순히 생각하면 이미지를 늦게 호출해 주는것뿐인 플러그인이지만이미지를 동적으로 호출해 주는것 하나만으로페이지 최초 로딩 속도 향상, 필요없는 이미지에 대한 트래픽 절감 효과등을 기대할수있어스크롤이 긴 갤러리형 페이지에 적용할 경우 페이지 속도 향상에 큰 기대를 할수있다. 2. 배포 사이트lazyload 플러그인은 직접 다운받아 소스를 웹서버에 업로드 후..
1. http://blueimp.github.io/jQuery-File-Upload/ 2. http://lampspw.wallonie.be/dgo4/tinymvc/myfiles/plugins/multifile-2.2.1/docs.html
출처 : http://makitweb.com/capture-signature-in-the-webpage-with-jquery-plugins/#jSignature Last updated on January 12th, 2017 by Yogesh SinghCapture Signature in the webpage with jQuery pluginsIn this tutorial, I show you some jQuery plugins by using it you can capture the user signature on your web page.They add a container on the web page where the user can draw its signature using mouse pointe..
IE 구버전(IE 8 이하) 에서는 label 태그가 정상적으로 동작하지 않는다. 그렇기 때문에 라디오 또는 체크박스등에 사용된 input 태그가 정상적으로 동작하지 않는데 이를 수정하기 위해서는 아래와 같은 스크립트를 추가해야한다. 아래는 jQuery 제이쿼리를 사용한 방법으로 아래 코드를 IE 구버전에서 추가시키도록 한다. // For support IE 8, label tag $(function() { $("label").on('click', function(){ if ($(this).attr("for") != "") { $(this).siblings('input').removeClass('checked') .end().addClass('checked'); $("#" + $(this).attr("f..
1. option value값으로 선택하기$("#id").val("1").prop("selected", true); //값이 1인 option 선택 2. option 순서로 선택하기$("#id option:eq(0)").prop("selected", true); //첫번째 option 선택 출처: http://yjcorp.tistory.com/11 [yj factory]
// 체크 박스 모두 체크 $("#checkAll").click(function() { $("input[name=box]:checkbox").each(function() { $(this).attr("checked", true); }); }); // 체크 박스 모두 해제 $("#uncheckAll").click(function() { $("input[name=box]:checkbox").each(function() { $(this).attr("checked", false); }); }); // 체크 되어 있는 값 추출 $("#getCheckedAll").click(function() { $("input[name=box]:checked").each(function() { var test = $(this).v..