Opened 14 years ago
Closed 12 years ago
#3972 closed bug (duplicate)
input.val() interprets null as 'null' in IE7
Reported by: | zirouk | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.3.2 |
Component: | attributes | Version: | 1.3.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
If I set the value of an input box with .val(null), IE7 inserts the string 'null' into the input. Firefox 3 correctly sets the input to .
1.2.1 correctly set the value to in both ie7 and ffx3 when using .val(null)
I will attach a html file containing a small demo and hotswap 1.2.1 and 1.3.1.
Attachments (1)
Change History (8)
Changed 14 years ago by
Attachment: | jquerybugtest.html added |
---|
comment:1 Changed 14 years ago by
hmm Trac evaluated my double single quotes incorrectly.
Where bad grammar exists describing output, please assume null or empty string.
comment:2 Changed 14 years ago by
Fix: core.js Line 389 change to:
value === undefined ) { |
comment:3 Changed 14 years ago by
Again, Trac butchered it, I'm sure you're smart enough to work it out.
comment:4 Changed 14 years ago by
Problem still exists in 1.3.2 - tested in Opera and IE7.
jquery version:
- jQuery JavaScript Library v1.3.2
- Revision: 6246
comment:5 Changed 14 years ago by
Component: | unfilled → core |
---|---|
Priority: | critical → minor |
comment:6 Changed 13 years ago by
Component: | core → attributes |
---|
comment:7 Changed 12 years ago by
Resolution: | → duplicate |
---|---|
Status: | new → closed |
Grouping under #4130.
Example