Skip to content

Instantly share code, notes, and snippets.

@JiaLiPassion
Last active July 10, 2018 03:08
Show Gist options
  • Save JiaLiPassion/1f76f1624ad9ca20ce40d516c0e4a148 to your computer and use it in GitHub Desktop.
Save JiaLiPassion/1f76f1624ad9ca20ce40d516c0e4a148 to your computer and use it in GitHub Desktop.
function callback(ctx) {
// access shared data from args
console.log('callback invoked', ctx); // will be {data: 'onload data'}
}
window.onload = function() {
setTimeout(callback, 100, {data: 'onload data'});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment