Hi I came across this piece of code and I was wondering specifically what is going on with this.each(function(i,e) and var $e = $(e);. I'd like to know what the programmer is trying to do.
Thanks!
$.fn.rssfeed = function (url, options, fn) {
return this.each(function (i, e) {
var $e = $(e);
var s = '';
}
