How exactly does it relate to jQuery? I know the library uses native javascript functions internally, but what exactly is it trying to do whenever such a problem appears?
|
It means you've tried to insert a DOM node into a place in the DOM tree where it cannot go. The most common place I see this is on Safari which doesn't allow the following:
Generally, this is just a mistake where this was actually intended:
Other causes seen in the wild (summarized from comments):
|
|||||||||||||||||
|
|
This error can occur when you try to insert a node into the DOM which is not valid HTML. NB: Invalid HTML can be something as subtle as an incorrect attribute, for example:
|
||||
|
|
|
If you are getting this error due to a jquery ajax call $.ajax Then you may need to specify what the dataType is coming back from the server. I have fixed the response a lot using this simple property.
|
|||||
|
|
Specifically with jQuery you can run into this issue if forget the carrots around the html tag when creating elements:
Will raise this error because what you meant was
|
|||
|
|
|
@Kelly Norton is right in his answer that It's true however you sometimes use third party libraries that you are not going to modify. It's JQuery UI in my case. Then you should provide the right In my case, it was as easy as renaming the |
|||
|
|
|
You can see these questions Getting HIERARCHY_REQUEST_ERR when using Javascript to recursively generate a nested list or JQuery UI Dialog with Asp .NET button postback.. The conclusion is when you try to use function append, you should use new variable, like this example
In the example above, uses the var "dlg" to run the function appendTo. Then error “HIERARCHY_REQUEST_ERR" will not come out again. |
||||
|
|
|
I encountered this error when using the Google Chrome extension Sidewiki. Disabling it resolved the issue for me. |
|||
|
|
|
I'm going to add one more specific answer here because it was a 2 hour search for the answer... I was trying to inject a tag into a document. The html was like this:
If you notice, the tag is closed in the preceding example ( Anyway, this error can be because your HTML is not correct. |
|||
|
|
|
If you run into this problem while trying to append a node into another window in Internet Explorer, try using the HTML inside the node instead of the node itself.
IE doesn't support appending nodes to another window. |
|||
|
|
|
This ERROR happened to me in IE9 when I tried to appendChild an dynamically to a which already existed in a window A. Window A would create a child window B. In window B after some user action a function would run and do an appendChild on the form element in window A using This would throw an error. Same with creating the input element using Thus my conclusion (please verify): no element can be dynamically created (using PS. I don't use jQuery. |
|||
|
|
I know this thread is old, but I've encountered another cause of the problem which others might find helpful. I was getting the error with Google Analytics trying to append itself to an HTML comment. The offending code:
This was causing the error because my first element was an HTML comment (namely a Dreamweaver template code).
I modified the offending code to something admittedly not bulletproof, but better:
|
|||
|
|
|
Another reason this can come up is that you are appending before the element is ready e.g.
In this case, you'll need to move the script after the . Not entirely sure if that's kosher, but moving the script after the body doesn't seem to help :/ Instead of moving the script, you can also do the appending in an event handler. |
|||
|
|
|
I got that error because I forgot to clone my element.
|
||||
|
|
|
Just for reference. IE will block appending any element created in a different window context from the window context that the element is being appending to. e.g
I haven't figured out how to create a dom element with jQuery using a different window context yet. |
|||
|
|
|
I get this error in IE9 if I had disabled script debugging (Internet Explorer) option. If I enable script debugging I don't see the error and the page works fine. This seems odd what is the DOM exception got to do with debugging either enabled or disabled. |
|||
|
|
