I would like to show my users a bar that looks like this, if:
You could use conditional compiling in conjunction with conditional comments
Here a short overview of how this could work.
IEMinor=false@_jscript_version > 9 (actually not needed) and IEMinor===falseNot Supported
I was too lazy to add the script type...
Here is an example on JSBin which doesn't show the bar in IE 10+ (untested). And shows it in other cases.
Note: I didn't make it look exactly like in the screenshot, you should get that part working
Edit: Using the browsermode of IE to test against IE<10 seems to work
Edit2: Whoops i thought from the picture IE9 is unsupported too, to allow IE9 change lte IE 9 to lt IE 9 and @_jscript_version > 9 to >= 9