select option jquery remove and add code example
Example: select remove option jquery
$('.ct option').each(function() {
if ( $(this).val() == 'X' ) {
$(this).remove();
}
});
$('.ct option').each(function() {
if ( $(this).val() == 'X' ) {
$(this).remove();
}
});