I thought this would be something I could easily google, but maybe I’m not asking the right question…
How do I set whatever “this” refers to in a given javascript function?
for example, like with most of jQuery’s functions such as:
$(selector).each(function() {
//$(this) gives me access to whatever selector we're on
});
How do I write/call my own standalone functions that have an appropriate “this” reference when called? I use jQuery, so if there’s a jQuery-specific way of doing it, that’d be ideal.
Javascripts
.call()and.apply()methods allow you to set the context for a function.Now you can call:
Which would alert
FOO. The other way around, passingobj_bwould alertBAR!!. The difference between.call()and.apply()is that.call()takes a comma separated list if you’re passing arguments to your function and.apply()needs an array.Therefore, you can easily write a function
hookby using theapply()method. For instance, we want to add a feature to jQuerys.css()method. We can store the original function reference, overwrite the function with custom code and call the stored function.Since the magic
argumentsobject is an array like object, we can just pass it toapply(). That way we guarantee, that all parameters are passed through to the original function.