Created
May 29, 2017 11:04
-
-
Save baladkb/c0ed5083bbfa654e936052430c8b0814 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
============== Input ============== | |
<select> | |
<option value="1">val-1<option> | |
<option value="2">val-5<option> | |
<option value="1">val-7<option> | |
<option value="3">val-8<option> | |
</select> | |
============== Input ============== | |
var map = {}; | |
$('select option').each(function () { | |
if (map[this.value]) { | |
$(this).remove() | |
} | |
map[this.value] = true; | |
}) | |
============== Output ============== | |
<select> | |
<option value="1">val-1<option> | |
<option value="2">val-5<option> | |
<option value="3">val-8<option> | |
</select> | |
============== Output ============== |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment