I wrote a simple html file with just a javascript function. It worked in IE but not in frefox and chrome. The code was:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>test</title>
<script type="text/javascript">
function evaluate()
{
alert("Hello World!");
}
</script>
</head>
<body>
<form >
<table id="tbl">
<tr align="right">
<td><input id="__JAVA_Evaluate" type="button" value="evaluate!" onclick="evaluate()"/>
</td>
</tr>
</table>
</form>
</body>
</html>
After a while I understood that it was not possible to define a function with the name evaluate() in the Firefox and chrome. And it is enough to rename the function. I wonder that is other function name which are reserved in Firefox and chrome and how we could be aware about this reserved keys?
uncaught exception: [Exception... "Not enough arguments" nsresult: "0x80570001 (NS_ERROR_XPC_NOT_ENOUGH_ARGS)" location: "JS frame :: http://localhost/ :: onclick :: line 1" data: no]when clicking the button, Chrome says nothing (and both don't reach the breakpoint I set withinevaluate. I can't find anything aboutevaluateas a reserved keyword, though. – Marcel Korpel Jan 18 '11 at 15:48