Skip to main content

Bug Tracker

Side navigation

#4892 closed bug (invalid)

Opened July 13, 2009 09:47AM UTC

Closed November 16, 2010 04:21AM UTC

1.3.2 selection at select>option have bug

Reported by: twty1988 Owned by: john
Priority: major Milestone: 1.3.2
Component: selector Version: 1.3.2
Keywords: selection select option Cc: twty1988@gmail.com
Blocked by: Blocking:
Description

category is select element

//1.2.6.min in IE/FF is ok

$("#category > option[text=market]")

if exist market

$("#category > option[text=market]").length == 1

//1.3.2.min IE is ok,FF exist bug

$("#category > option[text=market]").length == 0

$("#category > option[text=market]") can't return option element

Attachments (0)
Change History (2)

Changed December 17, 2009 04:27AM UTC by dmethvin comment:1

component: coreselector
owner: → john

Changed November 16, 2010 04:21AM UTC by dmethvin comment:2

resolution: → invalid
status: newclosed

There isn't a text attribute, use :contains() instead:

http://jsfiddle.net/dmethvin/3qCEL/