When I click on the button labeled ‘New Quote’, I want "Foo" to be printed to the console, but it isn’t. The console’s not yelling at me either. Does anyone know what I’m doing wrong?
Hey. Move your javascript in the JS Panel (the <script> tag isn’t necessary there). By having it in the HTML panel, you are not allowing jQuery to be defined before your script runs.
Also, you do have an error in your console (which explains exactly what I just told you):
Then, you can see the code you are writing in the JS panel. Before, your code was at the beginning of the <body> tag, while jQuery was still down there.