Skip to content

Instantly share code, notes, and snippets.

@jwenerd
Created March 10, 2015 20:21
Show Gist options
  • Save jwenerd/795f69545efc19d7f6ca to your computer and use it in GitHub Desktop.
Save jwenerd/795f69545efc19d7f6ca to your computer and use it in GitHub Desktop.
$(document).on('tk:thing-start', function() {
$('#something').addClass('whatever');
});
function start_thing() {
$(document).trigger('tk:thing-start');
/// do the computing
}
start_thing();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment