If I attach to onclick in an anchor tag for example, should I be able to see this in Firebug after the DOM has loaded?
The onclick is not firing and I'm trying to figure out what is wrong.
$("#myelementid").click(function() {
alert('test');
return false;
});
I've also tried .onclick(...)