function, each, this , function, each.
function Foo()
{
this.someProperty = 5;
}
Foo.prototype.myFunc = function()
{
};
Foo.prototype.bar = function()
{
var that = this;
$('.some_elements').each(function()
{
console.log(that);
that.myFunc();
});
};
, this , each, jQuery , 0, 1 ..