Pete LePage

Thoughts on web development, life, and photography.

@demonslay335 @RevToJa Nothing that I know of changed, but it sounds like it did. Could you feature detect onafterprint?

if ('onafterprint' in window) {
// use modern
} else {
// deal with ie
}

I don’t have an old IE to try this on, but I suspect this should do the trick.