Possible Duplicate:
What is the meaning of symbol $ in jQuery?
i Want to know why using $ sign at beginning for example in jquery each function. What does difference between two of this..
$('.container').each()
/..and
$.each()
and I have been looking at code something like this..?? What the $
sign does??
$.myObj = function() {
/..
}