Posted by: spaceufo on: July 9, 2007
[Where is Data?]
jQuery : Download
jQuery : DOM/Traversing/Selectors
jQuery : Plugins
http://www.ibm.com/developerworks/web/library/x-aj…
http://hiphapis.net/entry/jQuery
http://innolab.tistory.com/1173513704
http://www.visualjquery.com/1.1.2.html
What’s jQuery?
Created by John Resig in early 2006, jQuery is a great library for anyone who works with JavaScript code. Whether you’re new to the JavaScript language and want a library to address some of the complexities of Document Object Model [...]
Posted by: spaceufo on: May 19, 2007
* Ajax 객체
이 객체는 AJAX기능을 제공하는 많은 다른 클래스를 위한 root와 명명공간(namespace)처럼 제공한다
+ 프라퍼티
- activeRequestCount : 진행중인 AJAX요청의 수
+ 메소드
- getTransport() : 새로운 XMLHttpRequest 객체를 반환
* Ajax.Responders 객체
Enumerable를 상속하였다.
Ajax관련 이벤트가 발생할때 호출될 객체의 목록을 보존한다.
당신이 AJAX작업을 위한 전역 예외 핸들러를 연결하길 원한다면 이 객체를 사용할수 있다.
Ajax 를 컨트롤하기 위해서 내부적으로 사용되어 지는것 같다.
+ 프라퍼티
- responders [...]
Posted by: spaceufo on: May 19, 2007
아래의 글은 다타만의 개인 블로그에 있으며, 공부하고자 빌려왔습니다.
저작권은 다타만님께 있으며, 혹여 다타만님 의견있으시면 남겨주세요.
* PeriodicalExecuter 객체
이 객체는 주어진 함수를 주어진 시간간격으로 반복적으로 호출하기 위한 로직을 제공한다.
- [ctor](callback, interval)
callback : 파라미터 성격이 아닌 함수
interval: 호출할 초단위 시간간격
함수를 반복적으로 이 객체의 하나의 인스턴스를 생성
var tm = new PeriodicalExecuter(function(){alert(”열려라 참깨~~!”);},2);
위 tm 객체는 2 [...]