Possible Duplicate:
What is the meaning of “$” sign in JavaScript
Why do we use the dollar ($
) symbol in jQuery and JavaScript?
I always put a dollar in my scripts but I actuary don't know why.
For an example:
$('#Text').click(function () {
$('#Text').css('color', 'red')
});
This just changes the text colour when you click it, but it demonstrates my point.