Skip to main content

Posts

Showing posts with the label options

Hide select option in IE using jQuery

Currently I am using jQuery to hide/show select options using following code. $("#custcol7 option[value=" + sizeValue + "]").hide(); This works fine in Firefox, but doesnt do any good in other browsers. How to I hide options from select in Chrome, Opera and IE? Source: Tips4all