And 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?
Thx for any response in advance.
|
And 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? Thx for any response in advance.
| ||||
|
feedback
|
|
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):
| |||||||||||||||
feedback
|
|
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:
| ||||
|
feedback
|
|
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. | ||||
|
feedback
|
|
I encountered this error when using the Google Chrome extension Sidewiki. Disabling it resolved the issue for me. | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
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
| |||
|
feedback
|
|
I got this because i forgot to clone my element:
| |||
|
feedback
|
|
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.
| |||
|
feedback
|