需要删除P类(无法在代码中删除它)[关闭]

I need to remove the contents of

<p class="print_pdf"> 

from a single page on my site.

I cant use CSS, and I cant edit the index file to remove it as its XML and an element that loads on every page of our catalog site.

I've tried for example

$( "p.print_pdf" ).replaceWith( "" );

Without any luck

Link to the page in question - Haper College Catalog

You're printing a page and you want to remove the print icon when printing, right?

So, you can use CSS for that:

@media print
{    
    .print_pdf, .print_pdf *
    {
        display: none !important;
    }
}