how to detect internet explorer in jquery?
I tried using
let browser= navigator.useragent();
if(browser.includes("Trident")){}
I read jquery documentation and it recommends using modenizr.
I tried this also
$.browser.msie;
this does not work also.
I have a css that is not supported by internet explorer. What is the best option to do.