Skip to content

Instantly share code, notes, and snippets.

@egoist
Created June 29, 2015 12:28
Show Gist options
  • Select an option

  • Save egoist/3d4794f3008c2b417ef5 to your computer and use it in GitHub Desktop.

Select an option

Save egoist/3d4794f3008c2b417ef5 to your computer and use it in GitHub Desktop.
trigger when click `star` button
$('body')
.on('click', '.js-toggler-target', function() {
if($(this).attr('aria-label') == 'Star this repository') {
console.log('good');
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment