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?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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):
<!doctype html>to your injected HTML, or specifying the content type when fetching via XHR)