Possible Duplicates:
Why would a javascript variable start with a dollar sign?
JQuery : What is the difference between “var test” and “var $test”
What is the difference between this two ways of initializing variables?
var $val = 'something'
OR
var val = 'something'
as I see they are the same thing.
Maybe in this case $ is only the part of name in variable?
(it will become a meaningless question in that case:/)
Thanks
The
$in the variable name is only part of the name, but the convention is to use it to start variable names when the variable represents a jQuery object.Now later in your code, you know the
$myHeaderDivis already a jQuery object, so you can call jQuery functions:To get from the DOM-variable to the jQuery variable:
To get from the jQuery variable to the DOM-variable.