traunic wrote:
confirmed fixed in jquery-nightly.pack.js (although a previously working .eq(0) now tosses an error ;)
eq() has been deprecated (but not yet removed) in jQuery 1.1.4 and as we're aproaching jQuery 1.2 it is replaced with slice(). Use slice(0, 1) instead of eq(0).
http://jquery.com/blog/2007/08/24/jquery-114-faster-more-tests-ready-for-12/ --Klaus