how to remove html for select option in jquery code example
Example: jquery remove option from dropdown
<script>
$( ".dropdown" ).change(function() {
dropdownval = $( ".dropdown" ).val();
$(".dropdown option[value='dropdownval']").remove();
});
</script>