Skip to content

Instantly share code, notes, and snippets.

@Freeaqingme
Created March 13, 2012 18:46
Show Gist options
  • Save Freeaqingme/2030627 to your computer and use it in GitHub Desktop.
Save Freeaqingme/2030627 to your computer and use it in GitHub Desktop.
// Does not work
define(["dojo/query"], function($){
$("td").on("click", function(event) {
console.log(event);
});
});
// Works
dojo.query("td").forEach(function(node) {
dojo.connect(node, 'onclick', this, function(event) {
console.log(event);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment