Javascript/Javascript+jQuery(18)
-
아이폰에서 텍스트 복사 / 붙여넣기
Lorem ipsum dolor sit ametCopy to Clipboard window.Clipboard = (function(window, document, navigator) { var textArea, copy; function isOS() { return navigator.userAgent.match(/ipad|iphone/i); } function createTextArea(text) { textArea = document.createElement('textArea'); textArea.value = text; document.body.appendChild(textArea); } function selectText() { var range, selection; if (isOS()) { ran..
2018.05.03 -
라디오 버튼 선택해서 셀렉트 박스 컨트롤
주차가능 여부 주차가능 주차불가 주차가능 대수 1대 2대 3대 4대 5대 주차가능 대수 불가 function showParkings(id, text, btn) { console.log('parkings'); document.getElementById(id).style.display = 'block'; // hide the lorem ipsum text document.getElementById(text).style.display = 'none'; // hide the link btn.style.display = 'none'; }
2018.04.19 -
Jquery 링크 모음
[추천]Jquery 링크 모음 jQuery Grid Plugin http://www.trirand.com/blog/?page_id=6 (*******)팬시박스 http://fancy.klade.lv/ (****)디자이너를 위한 jquery http://www.webdesignerwall.com/demo/jquery/(****)그리드 http://www.reconstrukt.com/ingrid/example2.html AutoScroll http://jdsharp.us/jQuery/plugins/AutoScroll/demo.php (****) drag and drop http://host.sonspring.com/dragdrop/ (***) http://www.mootools.net/ (자바스크립트 프레임..
2018.04.18 -
JQuery 를 사용한 무한 스크롤 (Infinite Scroll) 예제
var page = 1; $(window).scroll(function() { if ($(window).scrollTop() == $(document).height() - $(window).height()) { console.log(++page); $("#enters").append("Page " + page + " So MANY BRS YEAHHH~ So MANY BRS YEAHHH~ So MANY BRS YEAHHH~ So MANY BRS YEAHHH~ So MANY BRS YEAHHH~ So MANY BRS YEAHHH~ So MANY BRS YEAHHH~ So MANY BRS YEAHHH~ So MANY BRS YEAHHH~ So MANY BRS YEAHHH~ So MANY BRS YEAHHH~ ..
2018.04.17 -
Auto tab to next input field when fill 4 characters
https://stackoverflow.com/questions/23888537/auto-tab-to-next-input-field-when-fill-4-characters
2018.04.13 -
[jQuery] 확인 창(confirm), 페이지 이동(location.replace)
$(document).ready(function(){ $('#Btn').click(function() { var result = confirm('Are you sure you want to do this?'); if(result) { //yes location.replace('index.php'); } else { //no } }); }); 출처: http://88240.tistory.com/173 [shaking blog]
2018.04.13