// Source - https://stackoverflow.com/a // Posted by user447356, modified by community. See post 'Timeline' for change history // Retrieved 2025-12-31, License - CC BY-SA 3.0 if ('matchMedia' in window) { // Chrome, Firefox, and IE 10 support mediaMatch listeners window.matchMedia('print').addListener(function(media) { if (media.matches) { beforePrint(); } else { // Fires immediately, so wait for the first mouse movement $(document).one('mouseover', afterPrint); } }); } else { // IE and Firefox fire before/after events $(window).on('beforeprint', beforePrint); $(window).on('afterprint', afterPrint); } function beforePrint() { $("#AllContent").hide(); $(".PrintMessage").show(); } function afterPrint() { $(".PrintMessage").hide(); $("#AllContent").show(); }

Daily Verses: Proverbs 15 verse 1


No comments:

Post a Comment

Let's get social! Share what's on your mind.