How to delete whole "@media print { ...}" CSS instructions?
Oftentimes web pages include a separate *.css file and put separate special CSS instructions inside for printing the article.
How can I delete with jQuery this
@media print { ............. }
rule / instruction?
Peter