JQuery this
this: es el objeto javascript.
this
$(this): es el objeto javascript transformado a un objeto jquery.
$(this)
$("p").click(function() { $(this).text("guala!"); });
http://learn.jquery.com/javascript-101/this-keyword/