Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
@HTahboub technically that is the code you will add in the <head> tag if you want your site to not show up in IE. However it is not recommended that you try something like this unless you want to wipe of IE from your supported list.
MS Edge does not support the above code -
@uziiuzair Well is there a way to display a different page than the one people see on other browsers(like how about the download page for chrome)
-
Cruiser15018y@HTahboub yes. use the above code but link a separate css file instead of a script tag
-
@HTahboub
<!--[if ie]>
<meta http-equiv="refresh" content="0;url=https://browser-update.org/update.h...>
<![endif]-->
This should do the trick :D -
@sylar I have not tried it out myself since I gave up on air long again! Hahahaha It's a redirect loop? Really?
<!--[if IE]>
<style type="text/css">
body { display:none; }
</style>
<![endif]-->
undefined