Skip to content

Instantly share code, notes, and snippets.

@ursuleacv
Created September 20, 2013 01:18
Show Gist options
  • Select an option

  • Save ursuleacv/6632126 to your computer and use it in GitHub Desktop.

Select an option

Save ursuleacv/6632126 to your computer and use it in GitHub Desktop.
Jquery remove an item from dropdown list
<select id="form_type">
<option value="1">c</option>
<option value="2">d</option>
<option value="3">e</option>
</select>
$("#form_type option[value='1']").remove();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment