I was asked in an interview that how do you 'declare' jQuery? He did not mean a jQuery variable or a $(func()). In case you find this question weird, please do not penalize me for this as I'm enquiring just cause I was asked. :)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
| show 1 more comment |
|
You don't "declare" jQuery, you just include the file within a script tag:
If you look in the jQuery source it appends itself to
|
|||||||||
|
|
We don't "declare" jQuery, we just add "reference" to the file where is this library in. For example:
That's it. |
|||
|
|
|
Perhaps he meant how to include it:
|
|||
|
|
<script>tag to reference it? – Interrobang Dec 21 '11 at 7:10