![]() |
| Courtesy of slideplayer.com (SlidePlayer) |
Daily Verses
- Home
- Daily Verses: Psalm 62:1
- Daily Verses: St. John 10 verse 10
- Daily Verses: Proverbs 15 verse 1
- Daily Verses: Psalm 59 verse 16
- Daily Verses: Psalm 46:1-2
- Daily Verses: Psalm 41:1
- The Daily Verses: Psalm 37:4 (Bible Daily)
- Daily Verses: Romans 8:11
- Daily Verses: St. John 8:12
- Daily Verses: Hebrews 12:29, KJV
// 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();
}
Subscribe to:
Comments (Atom)

No comments:
Post a Comment
Let's get social! Share what's on your mind.