I am new to jquery. I want to know the difference between this
and $(this)
. Suppose i made a function call like this
$.fn.column = function() {
var $td = this;
var $td1 = $(this);
}; //end of $.fn.column = function()
$('#FaqGridForm\\:faqGrid tr td').column();
When i use firebug, then both variables are [td]
. So what is the difference between these two ?