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 ?
- CRUD Laravel 7.x and 6.x Example
- Image Upload Laravel 7.x and 6.x Tutorial
- Laravel 7.x and 6.x Delete File from public folder example
- How to delete directory in Laravel 7.x and 6.x?
- How to create directory if not exists in Laravel 7.x and 6.x?
- Laravel 7.x and 6.x get all files in directory example
- Laravel 7.x and 6.x check file exists in folder example
- Ajax Autocomplete Textbox in Laravel 7.x and 6.x Example