In a clean meteor application with the added jquery package, I'm attempting to use the basic jquery css selector. What Am I doing wrong? The non-working example can be found here: http://jquery-test.meteor.com/
The JavaScript is placed directly below the generated template.hello.events method.
JS:
$("#foo").click( function() {
console.log("clicked!");
});
HTML:
<button id="foo" style="border: 10px">This is a test div</button>