Side navigation
#12190 closed bug (invalid)
Opened August 03, 2012 03:11PM UTC
Closed September 04, 2012 08:46AM UTC
hide(), addClass() is not working for option tag in IE 9.0.8 alone
Reported by: | thulasirams1986@gmail.com | Owned by: | thulasirams1986@gmail.com |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.7.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
<select id="ddlTest">
<option value="A">A</option>
<option value="B">B</option>
<option value="C">C</option>
<option value="D">D</option>
</select>
$(document).ready(function(){ $('#ddlTest').find('option[value="A"]').hide().addClass('HideClass');
$('#ddlTest').find('option[value="C"]').addClass('Red');
$('#ddlTest').val('C').trigger('change');
});
.HideClass
{
display: none;
}
.Red
{
color:red;
}
Attachments (0)
Change History (2)
Changed August 21, 2012 01:42AM UTC by comment:1
owner: | → thulasirams1986@gmail.com |
---|---|
status: | new → pending |
Changed September 04, 2012 08:46AM UTC by comment:2
resolution: | → invalid |
---|---|
status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
This seems to occur without jQuery as well, can you confirm?
http://jsfiddle.net/wd3zL/5/