Script works in MSIE but not FireFox (part of a VB.NET 2005 web site)
There must be a place in FireFox or a JavaScript settings somewhere that allows errors to continue.
The below works in MSIE
var _rate = "ctl00$ContentPlaceHolder1$txtrate"+index;
var rate = document.getElementById(_rate).value;
index = 1 to 10 for each row on the page. In this case it is 1 (the first).
But it the FireFox java errors it gets a null and terminates.
Why is it getting a null. It works fine on MSIE.