I have a php program which load 3 css files like this:
<link rel="stylesheet" type="text/css" href="css/css.css" media="screen"/>
<link rel="stylesheet" type="text/css" href="css/printer.css" media="print"/>
<link rel="stylesheet" type="text/css" href="css/spoken.css" media="speech"/>
I have jquery set up to hide everything from my screen except the h1 tags, when one clicks this h1 tag the associated h2, h3 and divs show up
my problem is I need everything to show up when I go the the printpreview in chrome or firefox
I think
$("*").show()should display everything on page except elements with visibility:hidden.