В Mootools можно управлять значением переменной this внутри функции:
function foo() {
// do something with the <i>this</i> variable
}
var bar = foo.bind(some_object);
// Now bar does the same thing as foo, except
// the <i>this</i> variable is a reference to <i>some_object</i>
Можно ли это сделать в Jquery?