Is it possible to insert an 'and' in a conditional comment?
For example:
<!--[if gte IE 9 && if !IE]>
// MESSAGE
<![endif]-->
Triggering only IE 9, higher versions of IE and browsers that are not IE?
The &
operator is not even necessary. This code will run in non-IE browsers and in IE 9 and higher, according to the syntax description on Wikipedia:
<!--[if gt IE 9]><!-->
// MESSAGE
<!--<![endif]-->