This seems to be a problem that many people face! Google Search Results Link
There are many answers, I studied some of the most reasonable and fixed any errors on the page. In Chrome, I do not collect any errors, but in IE8 I get an invalid argument on line 205 of the error and there is no status state. I am not a javascript expert and do not know where to start fixing this problem. Especially when it comes to browser features.
Problem screenshot
If you look at line 205 in JS, then this field is missing:
if (this.regionSelectEl.options.add) {
this.regionSelectEl.options.add(option);
} else {
this.regionSelectEl.appendChild(option);
}
This is an element for selecting a region (state) that is not on the page. JS Link:
http://jsfiddle.net/bms85/LKdsq/1/
What could be the reason for this?
Edit:
, html5. .