[jQuery] Re: Detect version of internet explorer using jquery

2009-05-27 Thread Eric Garside
The jQuery.browser object got depreciated rather recently in favour of feature detection. It would probably be easier for future maintainability if you were to code around detecting what different browser versions don't support, then writing in conditionals for handling the lack of that feature. C

[jQuery] Re: Detect version of internet explorer using jquery

2009-05-27 Thread Karl Swedberg
On May 27, 2009, at 2:47 AM, Nitin Sawant wrote: how to Detect version of internet explorer using jquery?? $.browser.msie && $.browser.version & also name of browser? You'll probably need to parse the string returned by navigator.userAgent keep in mind, though, that browser sniffing is usua