Possible Duplicate:
What is the meaning of “$” sign in javascript
I've encountered a code in JavaScript that looks like this:
$('svg circle').tipsy({
gravity: 'w',
html: true,
title: function() {
return 'Color: ';
}
});
What does $('')
mean here?