Alexandre Plennevaux wrote:
That's working fine, except that when printing the document, it prints the html source 
after DOM manips ("more info") instead of before modification of the DOM 
(address, city, postcode information).

$('span.moreInfoLink').text('more info').cluetip();

therefore, i would have loved to be able to disable this on a print() event...

Won't print-only CSS do this more simply?

    @media print {
        span.moreInfoLink {
            display: none;
        }
    }

Manipulating the DOM before and after printing might just be possible, but it sounds extremely heavyweight for this problem.

  -- Scott

Reply via email to