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

comments (single view)

firefox

if (window.document.documentMode) {
  window.location.href = `https://www.mozilla.org/en-US/firefox/` 
}
View all comments