본문 바로가기 메뉴 바로가기

VoidNoble IT Zone

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

VoidNoble IT Zone

검색하기 폼
  • 분류 전체보기 (720)
    • AI (1)
    • 모바일 (119)
      • Flutter (0)
      • React Native (1)
      • 모바일웹 (20)
      • Android (54)
      • iOS (39)
      • 윈도우모바일 (1)
    • 웹프로그래밍 (313)
      • html (12)
      • js (77)
      • css (31)
      • NodeJS (13)
      • Python (1)
      • PHP (42)
      • ASP Classic (68)
      • GoLang (1)
      • Wordpress (6)
      • JSP (3)
      • .NET (6)
      • Scala (1)
      • XML (4)
      • 웹접근성 (6)
      • Adobe Air & Flex (2)
    • SQL (35)
      • MS-SQL (26)
      • MySql (5)
      • MongoDB (2)
    • OS-서버-서비스 (152)
      • macOS (9)
      • Docker (9)
      • CloudFlare (1)
      • NginX (5)
      • Git (3)
      • AWS (6)
      • Azure (4)
      • 구글 DFP (광고서버) (1)
      • Windows (72)
      • Elasticsearch (3)
      • IoT (1)
      • Linux (27)
    • 응용프로그래밍 (11)
      • Java (1)
      • C# (8)
      • Visual Basic (0)
      • VB.NET (0)
    • 디자인 (16)
      • Photoshop (5)
      • illustrator (0)
      • Flash (1)
      • 웹디자인 (6)
      • 디자인 리소스 (1)
      • Inspiration (0)
    • Tools (12)
      • Visual Studio Code (5)
      • sublime text (1)
      • PHPStorm (4)
    • 개발 옆차기 (1)
    • 서비스들 (18)
    • 용어?영어? (2)
    • 문서-사무-OA (0)
    • 자료실 (34)
    • 하드웨어 (0)
    • 네트워크 (2)
    • 개발자 생활로그 (4)
  • 방명록

Prototype (13)
JSON Parse~parsing

JSON 문법검사기 http://www.jsonlint.com/ Cross browser 에서의 흥미로운 예제들 IE8 JSON.parse(”{ ‘a’:1 }”) : Syntax Error CHROME JSON.parse(”{ ‘a’:1 }”) : OK FF JSON.parse(”{ ‘a’:1 }”) : Syntax Error OPERA 10.10 JSON.parse(”{ ‘a’:1 }”) : Undefined variable JSON SAFARI 4.0.4 JSON.parse(”{ ‘a’:1 }”) : Syntax Error jQuery 1.3 까지는 고유의 parsing 기술이 쓰이기에 1: $.ajax({url: "/url", 2: dataType: "json", 3: success: functio..

웹프로그래밍/js 2010. 1. 28. 17:11
[Prototype] JSON과 setValue 로 폼 요소들 값 채우기

+ prototypeUtils.js /* prototypeUtils.js from http://jehiah.com/ Licensed under Creative Commons. version 1.0 December 20 2005 version 2.0 2010-01-08 by darthJun Contains: + unpackToForm() */ function unpackToForm(data){ for (i in data){ var val = (data[i]==null)? '' : data[i].valueOf(); if($$("input[type=radio][name='"+i+"']").length > 1) { // when element is radio group $$("input[type=radio][n..

웹프로그래밍/js 2010. 1. 8. 19:48
[Prototype] AutoComplete

http://www.ramirezcobos.com/labs/ajax-powered-autocomplete/ 여기 있는것인데 한글이 적용되려면 원본 파일 중 test.php 안의 if (strtolower(substr(utf8_decode($aUsers[$i]),0,$len)) == $input) 를 if (strtolower(substr($aUsers[$i],0,$len)) == $input) 로 고치면 되며 그렇게 고친 파일을 아래에 첨부한다.css/autocomplete.css 자동완성 모양내기 images/* 자동완성 관련 이미지들 js/autocomplete.js 자동완성 핵심 스크립트 test.html 예제 - 폼 test.php 예제 - ajax 자동완성 응답 form 페이지의 인코딩이 utf..

웹프로그래밍/js 2010. 1. 5. 17:15
우편번호 자동완성 prototype + scriptAculous

* 주의사항 !DOCTYPE 선언하면 Autocompleter 입력시 바로 작동하지 않음. CSS Code/* 주소 검색상자 */ #mb_addr { ime-mode: active; } /* 주소 자동완성 */ div.autocomplete { position:absolute; background-color:white; border:1px solid #888; margin:0px; padding:0px; } div.autocomplete ul { list-style-type: none; margin:0px; padding:0px; } div.autocomplete ul li.selected { background-color: #ffb; } div.autocomplete ul li { list-style-..

웹프로그래밍/js 2009. 12. 2. 18:05
Content Glider : Prototype & Scriptaculous

Glider 는 고정된 공간 내에서 아코디언과 같이 내용을 바꿔서 보여줍니다. 유명한 곳은 CODA Glider 입니다. 제작자의 사이트에서도 사용했었다는군요. (아래 그림) * 준비물: prototype.js & scriptacoulous.js & Glider.js 다운받기 싫다면 Google Ajax Libraries 에서 로딩 또는 로딩 순서는 틀리면 안됨 Glider 는 3개의 CSS Class 를 사용한다. scroller – serves as a window in which sections will appear, one at a time section – wraps around contents in individual panels in the glider controls – wraps arou..

웹프로그래밍/js 2009. 11. 5. 18:01
Prototype으로 radio 버튼 그룹의 값 받기

$$('input:checked[type="radio"][name="my_radio_group"]').pluck('value'); [출처] http://stereointeractive.com/blog/2008/06/05/get-radio-button-value-using-prototype/

웹프로그래밍/js 2009. 11. 5. 17:00
Stereotabs: Prototype 과 Scriptaculous 로 구현한 탭

http://stereointeractive.com/blog/code/prototype-tabs/#download

웹프로그래밍/js 2009. 11. 5. 16:56
Prototype JS로 Checkbox들 모두 선택 구현

0 1 2 3 Select All DeSelect All var checkboxes = []; checkboxes = $$('input[type=checkbox]'); var f = $('options'); // checkboxes 리턴값은 "[input 0, input 1, input 2, input 3]" checkboxes = f.getInputs('checkbox'); // 전체 선택 버튼 클릭하면 $('btnSelectAll').observe('click', function() { checkboxes.each(function(chkbox) { chkbox.checked = 1; }); }); // 전체 선택 해제 버튼 클릭하면 $('btnDeSelectAll').observe('click', f..

웹프로그래밍/js 2009. 11. 5. 16:35
Ferdinand.Slider

[출처] http://ferdinand.rs/javascript/ferdinandslider Prototype & ScriptAculous 기반의 이미지 Slider. 페이드 효과로 이미지가 교체되며 캡션이 지원된다. 유명한 라이트박스의 모달로 띄워지는 부분이 곧바로 본문 페이지에서 실행되는거라고 보면 된다.

웹프로그래밍/js 2009. 4. 23. 15:06
PrototypeXtensions

http://www.prototypextensions.com 이게 뭔가요? PrototypeXtensions 은 Prototype.js 과 Script.aculo.us 프레임웍 기반의 JavaScript library 이다. 컴포넌트 코어 확장 Class.accessors : 클래스를 위한 기본 접근자들 만듬. Cookie : 쿠키를 만들고, 읽고, 수정하고 삭제. Browser : 웹브라우저의 버젼을 쉽게 알게 한다. EventManager : 당신의 클래스들과 오브젝트들안의 커스텀 이벤트들 통합. Number : 시간 계산 방법의 설정. String : 당장은, 많지는 안고... 기록 History : URL Hash의 인자를 쉽게 "set/get" History.Observer : URL Hash ..

웹프로그래밍/js 2009. 4. 23. 12:04
이전 1 2 다음
이전 다음
공지사항
  • 비방 욕설 의견은 바로 삭제해 드립니다
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
  • Make Use Of
  • How to geek
  • 인터넷 통계정보 검색시스템
  • 트위터 공유 정보모음
  • 웹표준KR
  • 치우의 컴맹탈출구
  • Dev. Cheat Sheets
  • w3schools
  • Dev. 조각들
  • ASP Ajax Library
  • CSS Tricks
  • WebResourcesDepot
  • jQuery Selectors Tester
  • DeveloperSnippets
  • Smashing Magazine
  • Nettuts+
  • devListing
  • 웹 리소스 사이트(한)
  • Mobile tuts+
  • Dream In Code
  • Developer Tutorials
  • CSS3 Previews
  • 자북
  • 안드로이드 사이드
  • Code Visually
  • Code School
  • SQLer.com
  • 무료 파워포인트 템플릿
  • iconPot
  • Free PowerPoint Templates
  • Design Bombs
  • Web Designer Wall
  • 1st Webdesigner
  • Vandelay Design
  • 무료 벡터 이미지 사이트들
  • Tripwire Magazine
  • Web TrendSet
  • WebMonkey
  • 윤춘근 프리젠테이션 디자이너 블로그
  • cz.cc 무료 DNS
  • [웹하드] MediaFire
  • [웹하드] DivShare
  • 한컴 인터넷 오피스
TAG
  • iphone
  • IOS
  • Linux
  • 한글
  • Android
  • Docker
  • nodejs
  • iis
  • Wordpress
  • macos
  • laravel
  • mssql
  • Debug
  • Prototype
  • ASP
  • PHP
  • IE
  • git
  • classic asp
  • JQuery
  • CSS
  • JSON
  • API
  • centos
  • Mac
  • 워드프레스
  • 안드로이드
  • javascript
  • nginx
  • sencha touch
more
«   2025/05   »
일 월 화 수 목 금 토
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
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바