I know that below code will work for IE 8 and its lower versions.
<!--[if lte IE 8]>
Display an image file
<![endif]-->
Is there any similar syntax to identify IE 11 and other browsers like Firefox,chrome,..
Below is my prototype.
<!--[if IE 11 & other_browsers]>
Display Chart plugin here
<![endif]-->
I need this to display a chart on my web page. IE 11 and other browsers (Firefox,chrome,..) supports it. But IE 8 is not supporting. So I planned to display this chart from IE 11 and other browsers. An image will be displayed for lower version of IE.
For this requirement I am trying Conditional comment.