I'm new to jQuery and have noticed someone go:
var $this = $(this);
Why do this? Is it to save typing? Does it help performance? Is it fairly standard practice?
Also I've started doing things such as:
var minus_button = $('#minus_button');
Should this instead be var $minus_button = $('#minus_button');
to signal it's a jquery object?
I read http://docs.jquery.com/JQuery_Core_Style_Guidelines but couldn't find any suggestions.