I have a page with two media types, Print and screen. I also want to allow user to email the page to themselves but instead of the screen media type, I want to allow them to email the Print media type which would include some text that is hidden in the screen media type.
I was able to email the page DOM of the screen media type by using document.body.getElementsByClassName('content')[0].innerHTML }
.How can I do the same thing but with print media type?