( selector, context )
| 153 | |
| 154 | // Define a local copy of jQuery |
| 155 | jQuery = function( selector, context ) { |
| 156 | |
| 157 | // The jQuery object is actually just the init constructor 'enhanced' |
| 158 | // Need init if jQuery is called (just allow error to be thrown if not included) |
| 159 | return new jQuery.fn.init( selector, context ); |
| 160 | }; |
| 161 | |
| 162 | jQuery.fn = jQuery.prototype = { |
| 163 |
no outgoing calls