Recently there was a similar issue in version 1.3 (not 1.3.1) where selector with empty attribute value did not work correctly... I think it's been fixed in 1.3.1 --- Read jQuery Howto http://jquery-howto.blogspot.com
On Thu, Feb 12, 2009 at 11:07 AM, Ricardo Tomasi <ricardob...@gmail.com> wrote: > > Try $('#zz input[readonly=]:first') > > There are a few selector bugs in 1.3.1. Most have already been fixed > for 1.3.2. > > cheers, > - ricardo > > On Feb 12, 12:53 am, jack <datac...@gmail.com> wrote: >> The following works on before Version: >> $('#zz input:not([readonly]):first').focus().select() >> >> On Ver 1.3.1, it won't work unless you change to: >> $('#zz input:not([readonly=""]):first').focus().select()