How do I pass context into setTimeout? I want to call this.tip.destroy() if this.options.destroyOnHide after 1000 ms. How can I do that?
if (this.options.destroyOnHide) {
setTimeout('this.tip.destroy()', 1000);
}
When I try the above, "this" refers to the window.