Skip to content

Instantly share code, notes, and snippets.

@dmitry
Created July 23, 2009 10:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmitry/152649 to your computer and use it in GitHub Desktop.
Save dmitry/152649 to your computer and use it in GitHub Desktop.
var _that = this;
jQuery.extend({
someFunction: function(onSomeEvent) {
var variable = 'some text';
onSomeEvent.apply(_that); // how to pass current scope variables/functions to this function?
return null;
function _someMethod(arg) {
console.log(arg);
}
}
});
jQuery.someFunction(function(){
console.log(this.variable); // or console.log(variable);
console.log(this._someMethod(1)); // or jQuery.someFunction._someMethod(2);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment