Skip to main content

Bug Tracker

Side navigation

#4070 closed bug (worksforme)

Opened February 04, 2009 09:51PM UTC

Closed October 14, 2009 02:44AM UTC

Selection of empty fields in Chrome and Safari

Reported by: brnwdrng Owned by:
Priority: major Milestone: 1.3.2
Component: unfiled Version: 1.3.1
Keywords: Cc:
Blocked by: Blocking:
Description

Selection appears to fail in two browsers: see my issue description at the Google Group jQuery(English):

http://groups.google.com/group/jquery-en/browse_thread/thread/115907cc1870b66a/ec3d8a0e189c792e?lnk=gst&q=select+empty#ec3d8a0e189c792e

Only fails using 1.3.x

Attachments (1)
  • test-4070.html (0.8 KB) - added by dmethvin October 14, 2009 02:44AM UTC.
Change History (1)

Changed October 14, 2009 02:44AM UTC by dmethvin comment:1

resolution: → worksforme
status: newclosed

The

:empty
selector only selects elements with no children, not elements with no value attribute.

A

[value]
selector will select elements with a value attribute/property. Firefox always defines
value
on
input
elements whereas Chrome does not. In most cases using
input[type=text][value='']
will do what you want.

I don't think there's a bug here so I'll close the ticket.