Many people using jQuery will prefix variables that contain a jQuery object with a $, so that they are easily identified. Consider this example:
var $img = $(".someclass span.otherclass img");
/* somewhere later in the code */
$img.bind("click", function() {/*...*/});