Hi Guys,
In this article, i will let you know very simple and small bug or issue as you think for print preview. Actually, i was working on my core PHP project and i was printing preview for product report. I made it completed and it works fine.
But it was small bug and bug was that i used jquery ui tooltip, when i was printing report at that time that tooltip was also came there. First time i was just thinking where is it from come this text. However, i was found solution how to hide it when printing report.
So you can also hide tooptip ui text using following css code.
CSS Code:
@media print {
.tooltip {
visibility: hidden;
}
}
So as above i write print media css, it will help you too solve your issue.
I hope you found your best solution....
Do you like below Tutorials ?
- PHP Convert Date String to Datetime Object
- Laravel Validation Different Value Example
- Jquery Redirect to URL After Specific Time Example
- User Roles and Permissions in Laravel Example
- How to Get Value of Selected Option in Vue JS?
- Laravel Change Password OLD Password Validation Example
- Vue JS Get String Length Example
- How to Active and Inactive Status in Laravel?