Does anyone have any idea as to why the following code will not function in NN? I mean this is about as simple as it gets. Thanks.
<HTML>
<HEAD>
<SCRIPT LANGUAGE = "JavaScript">
function format() {
alert("Called format"
;
}
</SCRIPT>
</HEAD>
<BODY>
<DIV onClick="format()">
by Address
</DIV>
</BODY>
</HTML>
<HTML>
<HEAD>
<SCRIPT LANGUAGE = "JavaScript">
function format() {
alert("Called format"
}
</SCRIPT>
</HEAD>
<BODY>
<DIV onClick="format()">
by Address
</DIV>
</BODY>
</HTML>