[jQuery] Re: Broken selector in jQuery 1.3

2009-01-28 Thread Ricardo Tomasi
Different issues: $('[value=""]') also works in 1.3, but not in 1.3.1. $('[value=]') as in ticket #3933 works in 1.2.6, 1.3 and 1.3.1 in the following test: http://jquery.nodnod.net/cases/77 It's probably related to the [attribute!=anything] fix landed on 1.3.1: http://groups.google.com/group/j

[jQuery] Re: Broken selector in jQuery 1.3

2009-01-27 Thread Hector Virgen
Nevermind, I just found the bug report for this: http://dev.jquery.com/ticket/3933 -Hector On Tue, Jan 27, 2009 at 2:04 PM, Hector Virgen wrote: > Hello, > > I just updated to jQuery 1.3 and I am having trouble with the following > selector: > > var options = $('option[value=""]'); > > Firebu