Please relocate this if I am asking on the wrong site (Javascript based question, so I'm pretty sure it's in the right place).
I am currently dealing with error catching on a project that is soon to be pleted and set up for the client. I am wondering whether the following line in Javascript will ever fail?
var element = document.createElement("someelement")
Provided that:
someelement
is a valid HTML tag (div, a, h1, etc
)element
can be any string that is not a reserved word and starts with a letter.- The device it is running on is a modern device and RAM is not a problem <- EDIT
Will it ever fail? And if it does, what will it return?
NOTE: Sources would be great if you have them.
Please relocate this if I am asking on the wrong site (Javascript based question, so I'm pretty sure it's in the right place).
I am currently dealing with error catching on a project that is soon to be pleted and set up for the client. I am wondering whether the following line in Javascript will ever fail?
var element = document.createElement("someelement")
Provided that:
someelement
is a valid HTML tag (div, a, h1, etc
)element
can be any string that is not a reserved word and starts with a letter.- The device it is running on is a modern device and RAM is not a problem <- EDIT
Will it ever fail? And if it does, what will it return?
NOTE: Sources would be great if you have them.
Share Improve this question asked Oct 19, 2013 at 10:36 JosephGarroneJosephGarrone 4,1613 gold badges41 silver badges61 bronze badges 2- 2 I imagine it would fail if it couldn't allocate the required memory. – Spudley Commented Oct 19, 2013 at 10:39
- @Spudley That's the only thing I could think of too. – Ibrahim Najjar Commented Oct 19, 2013 at 10:41
3 Answers
Reset to default 5http://www.w3/TR/DOM-Level-2-Core/core.html
Element createElement(in DOMString tagName)
raises(DOMException);
And
Exceptions
DOMException
INVALID_CHARACTER_ERR: Raised if the specified name contains an illegal character.
Invalid character is e.g. space:
document.createElement(" ")
http://jsfiddle/yRY6Q/
According to the spec, a DOMException is raised if tagName contains invalid characters (whitespace characters, etc.).
In Firefox, document.creatElement will only fail when invalid characters are passed. Null or undefined is OK.
In Chrome, document.createElement will fail and throw a InvalidCharacterError when passing null or invalid characters. Undefined is OK.
As some users pointed out in the ments, it can always fail due to memory resources etc. but you cannot do anything to prevent that.
So, if someelement is a valid HTML tag (div, a, h1, etc)
, it will never fail.
You can use this snippet to find invalid characters:
for(var i = 0; i < 200; i++) {
var chr = String.fromCharCode(i);
var msg = i + ". " + chr + ": ";
try {
var elm = document.createElement(chr);
msg += "OK";
}
catch(e)
{
msg += "FAIL";
}
console.log(msg);
}
The only exception I am aware of is the following (Note that I'm using Chrome):
Error: InvalidCharacterError: DOM Exception 5
This exception arises when you pass null
, an object or an array as the parameter. It also fails when you pass a string with invalid HTML characters, such as @!#?
.
If you pass undefined, or do not specify the parameter, it will create an undefined element.
<undefined></undefined>
If you are sure that this function is throwing an error, you should probably be checking whether the string you are passing is !== null
before calling createElement
, as that is likely the source of your problem.
If the error still occurs, perhaps check that the string consists of only letters a-z, the underscore and the hyphen.