People who know how to code:
Make something so if someone visits the page in ie it redirects them to the Firefox/chrome download page
I’m going to do this:
Load page in Chrome → Redirect to Firefox
Load page in Firefox → Redirect to Opera
Load page in Opera → Redirect to Safari
Load page in Safari → Redirect to IE
Load page in IE → Redirect to Chrome
Opera GX is different from Opera? In that case,
Opera → Opera GX
Opera GX → Safari
if (window.document.documentMode) {
window.location.href = `https://www.google.com/chrome/downloads/`
}
firefox
if (window.document.documentMode) {
window.location.href = `https://www.mozilla.org/en-US/firefox/`
}
it doesn’t need to — window.document.documentMode
returns undefined
in all browsers except ie 11