Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- context
- Windows 10
- Quartz
- IntelliJ
- lsof
- GIT
- netsh
- xargs
- resource
- maVen
- tomcat
- VirtualBox
- Eclipse
- Mac
- JavaScript
- ssh
- import
- bash
- port
- Source
- find
- 네트워크
- 단축키
- web.xml
- plugin
- Windows
- 줄바꿈 문자
- profile
- vscode
- grep
Archives
- Today
- Total
develog
[jquery] source code 본문
https://code.jquery.com/jquery-3.6.0.js
// jQuery
jQuery = function( selector, context ) {
// The jQuery object is actually just the init constructor 'enhanced'
// Need init if jQuery is called (just allow error to be thrown if not included)
return new jQuery.fn.init( selector, context );
};
// $
if ( typeof noGlobal === "undefined" ) {
window.jQuery = window.$ = jQuery;
}
// $.fn
jQuery.fn = jQuery.prototype = {
}
// $.fn.init
init = jQuery.fn.init = function( selector, context, root ) {
}
// $.fn.ready
jQuery.fn.ready = function( fn ) {
}
Comments