Simple Hello world! not working in Firefox
Hi there
New to Jquery but I have a problem with compatability between IE and Firefox.
-
$(document).ready(function() {
$("a").click(function() {
alert("Hello a");
});
});
This works fine in IE 8 / 7 but when I try it in firefox it does not do anything.
Am I missing something stupid like a semi colon?