Here is my code in jsFiddle:
http://jsfiddle.net/AXXGZ/4/
html
<html> <body> <a href="abc.com", id="a">aa</a> </body> </html>
javascript
$('#a').click(function(){ alert ('aa'); })
run
onLoad
with MooTools 1.3.2
Why is my click
callback function not called?