what is the difference between these statements? I know that "var $test" declares a jquery variable, but what is the difference of a jquery variable with a general javascript variable ?
|
Nothing. No difference. $ is a valid character in a JavaScript identifier but has no special meaning. In fact, in the ECMAScript 3 specification in section 7.6 it states that
... although events have now probably rendered that recommendation obsolete. Indeed, the recent ECMAScript 5 spec omits the final sentence. |
||||
|
|
|
For example:
You can do |
|||||||||
|
|
there is no difference between here some examples:
but it would also work like this
i think what confuses you is the Jquery is basically a function set on the variable name
but you can still use |
||||
|
|
|
Try critisism on JQuery. The differences between native javascript and a framework like JQuery is zip - it co-exists. If you wish to master javascript - skip JQuery. I use GMap because of its functions - I am not able to develop GMap functionallity myself. But JQuery and extJS just offers structure - no funtionallity that you cannot do yourself. Mike |
|||||
|