css - Print function not working properly in firefox -


in webpage added print option. works perfect in google chrome not in firefox , ie.

css(only printing):

@media print   {   .printable{   display: inline;   }    .not-printable {   display: none;   }   } 

print function:

$(document).ready(function(){ $('#print').click(function(){ window.print(); }); }); 


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -