Opened 14 years ago
Closed 12 years ago
#4702 closed bug (worksforme)
The val() method on a select element works incorrectly in IE
Reported by: | erangalp | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.4 |
Component: | core | Version: | 1.3.2 |
Keywords: | select val | Cc: | |
Blocked by: | Blocking: |
Description
When using the val() method on a SELECT element with a value in order to change the current selection, it fails when given an empty string. Suppose I have the following SELECT:
<select name="selectme">
<option value="">Select something...</option> <option value="1" selected="selected">option 1</option> <option value="2">option 2</option>
</select>
Using the following code will select the last option (instead of the first): $("select[name='selectme']").val();
Change History (2)
comment:1 Changed 14 years ago by
comment:2 Changed 12 years ago by
Resolution: | → worksforme |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
I put two single quotes inside the val() method at the end. They were filtered out somehow