Hi
I'm iterating through each option of a select, and I need to selectively remove some options based on their value.
Here's a sample option (I don't control the markup)
<OPTION selected value=7>Compliance</OPTION>
$(
"select[title='MyTitle'] > OPTION").filter(function(){
var v=$(
this).attr['value'];
//other stuff
return result;
).remove(); v ends up undefined
Please help
Thanks
Martin