We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With a common conditional block in the script: method, this statement fails:
document.lastChild.firstChild.appendChild(x)
It matches here as lastChild, and the first node is actually a comment, to which you cannot append a script child:
<!doctype html> <!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]--> <!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]--> <!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
The text was updated successfully, but these errors were encountered:
change it to document.getElementsByTagName('head')[0]
Sorry, something went wrong.
Samuel Man Barfield III Net Worth? Hacker Heights, Tx
No branches or pull requests
With a common conditional block in the script: method, this statement fails:
It matches here as lastChild, and the first node is actually a comment, to which you cannot append a script child:
The text was updated successfully, but these errors were encountered: