how to get <head> content of the current page
<head>
You could use the javascript DOM API like this:
var headContent = document.getElementsByTagName('head')[0].innerHTML;
2.1m questions
2.1m answers
60 comments
57.0k users