HI Guys,
I am trying to hide a value in my html select. Its working fine in Firefox bit not is IE.
Below the the troubling line. Please advice
var searchAttributeEnum =
{
ProductID: 1,
PublisherProductID: 2,
Artist: 3,
Title: 4,
Publisher: 5,
ProductType: 6
};
$(this).parents('div.cloneRow').find(".js-CellSecond option[value='" + searchOptionsEnum.StartsWith + "']").hide();
HTML
<div class="cloneRow">
<div class="col">
<uc1:Dropdown ID="searchKey" CssClasses="js-CellFirst" runat="server" />
</div>
<div class="col">
<uc1:Dropdown ID="searchType" CssClasses="js-CellSecond" runat="server" />
</div>
<div class="col">
<input type="text" value="" class="searchText js-CellThree" name="searchInput" />
<uc1:Dropdown ID="searchPublisherType" CssClasses="js-CellThreePublisher" runat="server" />
<uc1:Dropdown ID="searchProductType" CssClasses="js-CellThreeProductType" runat="server" />
</div>
</div>
Thanks