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.

link|improve this question

52% accept rate
feedback

8 Answers

up vote 74 down vote accepted

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:

document.appendChild(document.createElement('div'));

Generally, this is just a mistake where this was actually intended:

document.body.appendChild(document.createElement('div'));

Other causes seen in the wild (summarized from comments):

  • You are attempting to append a node to itself
  • You are attempting to append null to a node
  • You are attempting to append a node to a text node.
  • Your HTML is invalid (e.g. failing to close your target node)
  • The browser thinks the HTML you are attempting to append is XML (fix by adding <!doctype html> to your injected HTML, or specifying the content type when fetching via XHR)
link|improve this answer
20  
The error also occurs when you try and append a node to itself. I just ran into this one myself :-) – Ben Clayton Jul 29 '10 at 15:48
thank you, ben :) – innotune Mar 31 '11 at 18:33
2  
I just got this trying to add a null to an element (and a totally unrelated tip - always make sure your functions return the thing you wrote them to return :P) – Veli Jul 19 '11 at 16:43
I saw this when one of the closing tags was missing out of the target. – Tom H Oct 17 '11 at 23:20
IE(9) may throw this error when using jQuery to append AJAX results. Avoid this by using response.xml where available. For example, $(e).append(response.xml || $(response)); – zourtney Feb 20 at 18:33
show 1 more comment
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:

// <input> can have a 'type' attribute
var $input = $('<input/>').attr('type', 'text');
$holder.append($input);  // OK

// <div> CANNOT have a 'type' attribute
var $div = $('<div></div>').attr('type', 'text');
$holder.append($div);   // Error: HIERARCHY_REQUEST_ERR: DOM Exception 3
link|improve this answer
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

jQuery(function() {
   var dlg = jQuery("#dialog").dialog({ 
                        draggable: true, 
                        resizable: true, 
                        show: 'Transfer', 
                        hide: 'Transfer', 
                        width: 320, 
                        autoOpen: false, 
                        minHeight: 10, 
                        minwidth: 10 
          });
  dlg.parent().appendTo(jQuery("form:first"));
});

In the example above, uses the var "dlg" to run the function appendTo. Then error “HIERARCHY_REQUEST_ERR" will not come out again.

link|improve this answer
feedback

I encountered this error when using the Google Chrome extension Sidewiki. Disabling it resolved the issue for me.

link|improve this answer
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:

<map id='imageMap' name='imageMap'>
  <area shape='circle' coords='55,28,5' href='#' title='1687.01 - 0 percentile' />
</map>

If you notice, the tag is closed in the preceding example (<area/>). This was not accepted in Chrome browsers. w3schools seems to think it should be closed, and I could not find the official spec on this tag, but it sure doesn't work in Chrome. Firefox will not accept it with <area/> or <area></area> or <area>. Chrome must have <area>. IE accepts anything.

Anyway, this error can be because your HTML is not correct.

link|improve this answer
feedback

Specifically with jQuery you can run into this issue if forget the carrots around the html tag when creating elements:

 $("#target").append($("div").text("Test"));

Will raise this error because what you meant was

 $("#target").append($("<div>").text("Test"));
link|improve this answer
feedback

I got this because i forgot to clone my element:

// creates an error
clone = $("#thing");
clone.appendTo("#somediv");

// does not
clone = $("#thing").clone();
clone.appendTo("#somediv");
link|improve this answer
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.

$.ajax({
    url: "URL_HERE",
    dataType: "html",
    success: function(response) {
        $('#ELEMENT').html(response);
    }
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.