From docs i understand that .proxy() would change the scope of the function passed as an argument.Can someone please explain this better ?, why should we do this?
|
|
What it ultimately does is it ensures that the value of A common example is in a Take this:
The intention is simple enough. When But what if we wanted a short delay before adding the class? We might use a
So what we can do instead, is to call
So after we gave How does it do it? It just returns an anonymous function that calls our function using the A simplified look at the function that is returned may look like:
So this anonymous function is given to |
|||||||||||||||
|
|
Without going into creater detail (which would be necessary because this is about Context in ECMAscript, the this context variable etc.) There are three different types of "Contexts" in ECMA-/Javascript:
Every code is executed in its execution context. There is one global context and there can be many instances of function (and eval) contexts. Now the interesting part: Every call of a function enters the function excution context. An execution context of a function looks like: The Activation Object So the this value is a special object which is related with the execution context. There are two functions in ECMA-/Javascript which may change the this value in a function execution context:
If we have a function
Now we could access in
This is exactly what |
|||||||
|
|
Here's a great video tutorial by nettuts showing how $.proxy works. http://net.tutsplus.com/tutorials/javascript-ajax/quick-tip-learning-jquery-1-4s-proxy/ |
|||
|
|
