Skip to content

Instantly share code, notes, and snippets.

@corpix
Created September 2, 2012 08:12
Show Gist options
  • Select an option

  • Save corpix/3595778 to your computer and use it in GitHub Desktop.

Select an option

Save corpix/3595778 to your computer and use it in GitHub Desktop.
Events
context.on('click', function(){
// Какой-то код
});
setTimeout(function() {
context.trigger('click'); // "Бросаем" событие `click`
}, 5 * 1000); // Событие будет вызвано через 5 секунд
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment