This simple onlick event works in IE and Chrome but not in FireFox (latest version). Is there some syntax issue?
<html>
<head>
<script>
function scroll() {
alert(1);
}
</script>
</head>
<body>
<a href="#" onclick="javascript:scroll();" />Click Here</a>
</body>
</html>
Thanks in advance!