I'm having a real problem with JavaScript scope in IE 9.
This is inside the body of my document (yes, I realize script should go in the head for proper HTML, but I've never had it break a script before). The script is in the body because I don't want to mess with a shared header page for a script that is only relevant for this page:
<script type="text/javascript">
function googleMapsQuery(accountNum) {
// function code is here (omitted for brevity)
}
</script>
This is inside a td
block inside a tr
block inside a tbody
block inside a table
block inside a form
block inside the body
:
<button id="google-422111" onclick="googleMapsQuery(422111)" type="button">Google This!</button>
I even moved the script block above the form just in case the order of the script function declaration was relevant (it's not).
The script works flawlessly in FireFox and Chrome, but in IE 9 (with or without compatibility view on), I get this error:
SCRIPT5007: The value of the property 'googleMapsQuery' is null or undefined, not a Function object
I studied JavaScript scope, and I cannot figure out any reason why IE thinks that 'googleMapsQuery' is a property, and why it is undefined. It's a function, and I defined it!