I am just a designer and don't know javascript well enough to figure out how to print a full content of a JScrollPane, not a visible part of it. I would very much appreciate any help with the issue. Thanks!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I'd suggest creating a print-stylesheet that contains following rules:
all selectors used in the code above correspond to HTML structure of jScrollPane basic example |
|||
|
Didn't work for me with jScrollPane - v2.0.0beta11 - 2011-07-04. Taking a quick look at the generated source code shows that the div class names have changed. Here is what I put in my print.css:
where the jQuery code is:
Another thought : Putting CSS properties in @media print {} only works if the CSS file in question is loaded, which won't happen if the CSS file is associated to the 'screen' media. |
||||
|
|
|
Or put the entire scrollpane stylesheet inside a @media print { //scrollpane css goess here. } |
|||
|
|