特定のコンテキストで次の関数を実行する必要があります。
setTimeout(function () {
myFunction();
}, 1000 * 60);
var changeDateFormat = function () {
console.log(this); // this should be $('.myClass')
// but I need to set it from setTimeout
// any hints
};
PS:
私はUnderscore.jsとjQueryを使用しています。