Sorry to report this here, but the site appears to be largely 
non-functional due to the popularity of the recent release of jQuery 
1.1.3.

Unfortunately, 1.1.3 breaks completely on Konqueror, at least in my case 
where the lower-cased user agent string looks like this

mozilla/5.0 (compatible; konqueror/3.5; linux) khtml/3.5.7 (like gecko) 
(debian)

This string doesn't result in a match for the browser version when the 
original pattern is used

  jQuery.browser = {
    version: b.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)[1],
    ...
  };

The fix is easy:

  jQuery.browser = {
    version: b.match(/.+(?:rv|it|ra|ie|or)[\/: ]([\d.]+)/)[1],
    ...
  };

Michael

-- 
Michael Schuerig
mailto:[EMAIL PROTECTED]
http://www.schuerig.de/michael/

Reply via email to