how to get content of the current page
You can use an element selector to get <head>
, for example:
$("head")
//for example:
alert($("head").html()); //alerts the <head> children
You can give it a try here
You could use the javascript DOM API like this:
var headContent = document.getElementsByTagName('head')[0].innerHTML;
Simply as:
document.head
// returns object DOM Object
document.head.innerHTML
// returns text, like: '<title>Title of the page...'