Skip to content

Browser JavaScript Error Codes

tolmasky edited this page Aug 12, 2010 · 11 revisions

Safari

INDEX_SIZE_ERR: DOM Exception 1

Safari: INDEX_SIZE_ERR: DOM Exception 1
Firefox: An invalid string or code was specified" code: "12

What it means: you are setting a DOM property to undefined.
What you probably did: Perhaps you forgot to initialize a variable (in init?), thus doing “property = uninitialized-var” is throwing this.

Firefox

An invalid string or code was specified" code: "12

Safari: INDEX_SIZE_ERR: DOM Exception 1
Firefox: An invalid string or code was specified" code: "12

What it means: you are setting a DOM property to undefined.
What you probably did: Perhaps you forgot to initialize a variable (in init?), thus doing “property = uninitialized-var” is throwing this.