src="http://code.jquery.com/jquery-latest.min.js" charset="utf-8"> function switch01(){ $("#con01,#con02,#con03").hide(); $("#con04").slideToggle("slow"); }; As I understand, the above code is jQuery code, and it needs the first - reference line to work at all.
For example, CSS code will not work without a reference to a css file (if not inline placed).
But I removed the first line (accidentally), and what I see - the code still works.
Does maybe browser has jQuery inside itself ?
If so - why one can need the above line at all ?
And if so - what about priority issue (in case version's conflict between the referencing and browser's library ?
And, if not so - where is the library placed ?
Maybe - in the eternal, ever-present Universe :).
Or maybe - something is wrong in my understanding (probably).