SyntaxFix
Write A Post
Hire A Developer
Questions
Use function.call:
function.call
var f = function () { console.log(this); } f.call(that, arg1, arg2, etc);
Where that is the object which you want this in the function to be.
that
this