Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using $('html').html() I can get the HTML within the <html> tag (<head>, <body>, etc.). But how can I get the actual HTML of the <html> tag (with attributes)?

Alternatively, is it possible to get the entire HTML of the page (including doctype, <html>, etc.) with jQuery (or plain old JavaScript)?

Thanks!

share|improve this question

3 Answers

up vote 4 down vote accepted

http://brandonaaron.net/blog/2007/06/17/jquery-snippets-outerhtml

use that snippet, then $('html').outerHTML()

share|improve this answer

if you want to get an attribute of an HTML element with jQuery you can use .attr();

so $('html').attr('someAttribute'); will give you the value of someAttribute of the element html

http://api.jquery.com/attr/

Additionally:

there is a jQuery plugin here: http://plugins.jquery.com/project/getAttributes

that allows you to get all attributes from an HTML element

share|improve this answer
The getAttributes() project is a bit old now (Feb 2009). – gligoran Nov 16 '10 at 17:32

This is how to get the html DOM element purely with JS:

var htmlElement = document.getElementsByTagName("html")[0]

And if you want to use jQuery to get attributes from it...

$(htmlElement).attr(INSERT-ATTRIBUTE-NAME)
share|improve this answer
Your answer would be considerably better if you could explain why this answered the question. Also, please highlight code and click the {} button or press ctrl + k to mark it up as code. – Ben Jan 29 at 22:31
ok, I edited it =D – posit labs Jan 29 at 22:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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