Looking at jQuery materials I noticed that some articles use two types of variable declarations, some using the dollar sign and some not, as in the example below:
Alternative 1
var $row =$("<tr/>")
Alternative 2
var row =$("<tr/>")
Is there a difference between the two forms? When to use one or the other?