I need to know when the user accesses the website through Internet Explorer, execute a CSS. So that's fine, here is the code I used to apply CSS:
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="app/template/css/apenas-ie.css" />
<![endif]-->
But it is not working, unfortunately you are not identifying if it is Internet Explorer or not, because if you apply the css in the default cover page it gets, but inside this one does not.
Does anyone have a Script to check if the browser is Internet Explorer, regardless of the version, so I can then do an if and apply css? Note: I need this in Javascript.