Fix IE / Edge background-attachment: fixed flicker
IE or Edge will show an image stutter / flicker with background-attachment: fixed. This JavaScript code will solve that problem
JavaScript
if ((document.documentMode != undefined) || (/Edge/.test(navigator.userAgent))) {
alert("IE 8+ or Edge browser");
document.documentElement.style.overflow = "hidden";
document.documentElement.style.height = "100%";
document.body.style.overflow = "auto";
document.body.style.height = "100%";
} else {
alert("IE 7- or other browser");
}