[jQuery] Common $.msie6 check seems to be wrong - WIndows Vista users please confirm

[jQuery] Common $.msie6 check seems to be wrong - WIndows Vista users please confirm


Hi all,
a few plugins use some kind of check for IE 6, I for example use:
$.browser.msie6 = $.browser.msie && ($.browser.version &&
$.browser.version < 7 || /6.0/.test(navigator.userAgent));
The second check is required for compatibility with jQuery 1.1.2 and
below, $.browser.version was introduced in jQuery 1.1.3.
Can somebody please confirm, that this check fails in Windows Vista (I
don't have Vista), as the userAgent contains "Windows 6.0" here?
In that case, it's better to use:
/MSIE 6.0/.test(navigator.userAgent)
Thank you, Klaus