Skip to content

Instantly share code, notes, and snippets.

@callumacrae
Created November 10, 2011 18:49
Show Gist options
  • Select an option

  • Save callumacrae/1355731 to your computer and use it in GitHub Desktop.

Select an option

Save callumacrae/1355731 to your computer and use it in GitHub Desktop.
//dartlang:
document.query('#next').on.click.add((e) {
sliderMenu.selectNext(true);
});
//javascript:
var next = document.getElementById('next');
function cb() {
sliderMenu.selectNext(true);
}
if (!!next.addEventListener) {
next.addEventListener('click', cb);
} else {
next.attachEvent('click', cb);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment