JSFiddle - React, Tailwind, and code Playground

by dav sev

HTML

<<html>
  <head>
  
  </head>
  <body>
  <div id="ass">תחת</div>
  </body>
</html>

JavaScript

//check if browser is IE
    //IE doesn't support greyscale css filter
    //for that reason I enabled the 'grey option in IE.
    //David - 2.8.2016
    var ua = window.navigator.userAgent;
    var msie = ua.indexOf("MSIE ");

    if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) // If Internet Explorer, return version number
    {
        $('#ass').css('color', 'red');
    }