im just wondering if im going to search a data then will print only the table not including the search box and the submitt button. it is possible to do that?
            Asked
            
        
        
            Active
            
        
            Viewed 140 times
        
    -1
            
            
        - 
                    see some link http://stackoverflow.com/questions/18248809/window-print-print-all-div-content-withot-scrollbar – Satish Sharma Jul 21 '14 at 10:17
- 
                    more link http://stackoverflow.com/questions/2255291/print-the-contents-of-a-div – Satish Sharma Jul 21 '14 at 10:17
1 Answers
0
            
            
        Yes, no PHP or JavaScript required, just CSS: You provide a print style sheet that hides all elements except the ones you want to print:
@media print {
    /* ...these rules only apply when printing, use them to hide search boxes
       and such... */
}
 
    
    
        T.J. Crowder
        
- 1,031,962
- 187
- 1,923
- 1,875
