I've got the following code inside of a <script> tag:
$(document).ready(function(){
$("#toolbarReset").click(function() {
alert("I've been clicked! Oh, what a world!");
});
... other, unrelated functions, which all seem to work fine
});
... and some html below:
<span id="toolbarReset" style="line-height: 18px; width: 50px; height: 21px; padding: 0pt 7px 0pt 3px;">
Reset
</span>
... but when I click on the words "Reset", nothing happens.
Tried changing it from using "id" to "class", and updating the jQuery code appropriately ( "#toolbarReset" became "toobarReset" ). Tried putting some code inside the .click event to output to the Firebug console, and verified that "toolbarReset" is a unique id within the DOM.