커피와 개발자

[jQuery] chapter1. window.load() 와 같은 기능 본문

웹개발/제이쿼리(jQuery)

[jQuery] chapter1. window.load() 와 같은 기능

광박이 2011. 4. 14. 10:24
728x90
window.load() 와 같은 기능을 jQuery로 작성
jQuery(document).ready(function(){
alert('Hello jQuery .. !');
});
실행하면 alert창 결과를 보여준다.

jQuery 는 $ 로 사용할 수 있다.
728x90
Comments