{"id":5196,"date":"2018-03-21T15:10:14","date_gmt":"2018-03-21T20:10:14","guid":{"rendered":"http:\/\/www.carnaghan.com\/?post_type=epkb_post_type_1&p=5196"},"modified":"2018-03-21T15:10:14","modified_gmt":"2018-03-21T20:10:14","slug":"how-to-remove-all-options-within-a-html-select-box-using-jquery","status":"publish","type":"epkb_post_type_1","link":"https:\/\/www.carnaghan.com\/knowledge-base\/how-to-remove-all-options-within-a-html-select-box-using-jquery\/","title":{"rendered":"How to remove all options within a Html select box using JQuery"},"content":{"rendered":"

You have a\u00a0html select box<\/strong>\u00a0“combo box<\/em>”\u00a0\u00a0<\/span><\/p>\n

\n
\n
<select id=\"selectBox\">\r\n<option>1<\/option>\r\n<option>2<\/option>\r\n<option>3<\/option>\r\n<option>4<\/option>\r\n<\/select><\/pre>\n<\/div>\n<\/div>\n

In order to remove all items using\u00a0JQuery<\/strong>\u00a0use the\u00a0JQuery<\/strong>\u00a0empty<\/strong><\/em>\u00a0function<\/p>\n

\n
\n
$('#selectBox').empty();<\/pre>\n<\/div>\n<\/div>\n

Replace\u00a0selectBox<\/em><\/strong>\u00a0with the relevant\u00a0id<\/em><\/strong>\u00a0for the select box<\/p>\n

If you wish to\u00a0empty<\/strong>\u00a0the\u00a0select box<\/strong>\u00a0and add a single\u00a0option<\/strong>\u00a0to the\u00a0select box<\/strong>, use\u00a0JQuery’s<\/strong>\u00a0append<\/strong><\/em>\u00a0function together with the\u00a0empty<\/strong><\/em>\u00a0function<\/p>\n

\n
\n
$('#selectBox').empty().append('<option>New Option<\/option>');<\/pre>\n<\/div>\n<\/div>\n

This will add the New Option to the\u00a0select box<\/strong>.<\/p>\n","protected":false},"excerpt":{"rendered":"

You have a\u00a0html select box\u00a0“combo box”\u00a0\u00a0 <select id=”selectBox”> <option>1<\/option> <option>2<\/option> <option>3<\/option> <option>4<\/option> <\/select> In order to remove all items using\u00a0JQuery\u00a0use the\u00a0JQuery\u00a0empty\u00a0function $(‘#selectBox’).empty(); Replace\u00a0selectBox\u00a0with the relevant\u00a0id\u00a0for the select box If you wish to\u00a0empty\u00a0the\u00a0select box\u00a0and add a single\u00a0option\u00a0to the\u00a0select box, use\u00a0JQuery’s\u00a0append\u00a0function together with the\u00a0empty\u00a0function $(‘#selectBox’).empty().append(‘<option>New Option<\/option>’); This will add the New Option to the\u00a0select box.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"footnotes":""},"epkb_post_type_1_category":[4398],"epkb_post_type_1_tag":[],"yoast_head":"\nHow to remove all options within a Html select box using JQuery - Ian Carnaghan<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.carnaghan.com\/knowledge-base\/how-to-remove-all-options-within-a-html-select-box-using-jquery\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to remove all options within a Html select box using JQuery - Ian Carnaghan\" \/>\n<meta property=\"og:description\" content=\"You have a\u00a0html select box\u00a0“combo box”\u00a0\u00a0 <select id="selectBox"> <option>1<\/option> <option>2<\/option> <option>3<\/option> <option>4<\/option> <\/select> In order to remove all items using\u00a0JQuery\u00a0use the\u00a0JQuery\u00a0empty\u00a0function $('#selectBox').empty(); Replace\u00a0selectBox\u00a0with the relevant\u00a0id\u00a0for the select box If you wish to\u00a0empty\u00a0the\u00a0select box\u00a0and add a single\u00a0option\u00a0to the\u00a0select box, use\u00a0JQuery’s\u00a0append\u00a0function together with the\u00a0empty\u00a0function $('#selectBox').empty().append('<option>New Option<\/option>'); This will add the New Option to the\u00a0select box.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.carnaghan.com\/knowledge-base\/how-to-remove-all-options-within-a-html-select-box-using-jquery\/\" \/>\n<meta property=\"og:site_name\" content=\"Ian Carnaghan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@icarnaghan\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.carnaghan.com\/knowledge-base\/how-to-remove-all-options-within-a-html-select-box-using-jquery\/\",\"url\":\"https:\/\/www.carnaghan.com\/knowledge-base\/how-to-remove-all-options-within-a-html-select-box-using-jquery\/\",\"name\":\"How to remove all options within a Html select box using JQuery - Ian Carnaghan\",\"isPartOf\":{\"@id\":\"https:\/\/www.carnaghan.com\/#website\"},\"datePublished\":\"2018-03-21T20:10:14+00:00\",\"dateModified\":\"2018-03-21T20:10:14+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.carnaghan.com\/knowledge-base\/how-to-remove-all-options-within-a-html-select-box-using-jquery\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.carnaghan.com\/knowledge-base\/how-to-remove-all-options-within-a-html-select-box-using-jquery\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.carnaghan.com\/knowledge-base\/how-to-remove-all-options-within-a-html-select-box-using-jquery\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.carnaghan.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to remove all options within a Html select box using JQuery\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.carnaghan.com\/#website\",\"url\":\"https:\/\/www.carnaghan.com\/\",\"name\":\"Ian Carnaghan\",\"description\":\"Software Developer, Blogger, Educator\",\"publisher\":{\"@id\":\"https:\/\/www.carnaghan.com\/#\/schema\/person\/c689c24d516c51968a88b628860740a5\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.carnaghan.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.carnaghan.com\/#\/schema\/person\/c689c24d516c51968a88b628860740a5\",\"name\":\"Ian Carnaghan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.carnaghan.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f2aa5baca80c2be728de43a975185d91?s=96&d=retro&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f2aa5baca80c2be728de43a975185d91?s=96&d=retro&r=g\",\"caption\":\"Ian Carnaghan\"},\"logo\":{\"@id\":\"https:\/\/www.carnaghan.com\/#\/schema\/person\/image\/\"},\"description\":\"I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.\",\"sameAs\":[\"http:\/\/www.carnaghan.com\",\"https:\/\/x.com\/icarnaghan\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to remove all options within a Html select box using JQuery - Ian Carnaghan","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.carnaghan.com\/knowledge-base\/how-to-remove-all-options-within-a-html-select-box-using-jquery\/","og_locale":"en_US","og_type":"article","og_title":"How to remove all options within a Html select box using JQuery - Ian Carnaghan","og_description":"You have a\u00a0html select box\u00a0“combo box”\u00a0\u00a0 <select id=\"selectBox\"> <option>1<\/option> <option>2<\/option> <option>3<\/option> <option>4<\/option> <\/select> In order to remove all items using\u00a0JQuery\u00a0use the\u00a0JQuery\u00a0empty\u00a0function $('#selectBox').empty(); Replace\u00a0selectBox\u00a0with the relevant\u00a0id\u00a0for the select box If you wish to\u00a0empty\u00a0the\u00a0select box\u00a0and add a single\u00a0option\u00a0to the\u00a0select box, use\u00a0JQuery’s\u00a0append\u00a0function together with the\u00a0empty\u00a0function $('#selectBox').empty().append('<option>New Option<\/option>'); This will add the New Option to the\u00a0select box.","og_url":"https:\/\/www.carnaghan.com\/knowledge-base\/how-to-remove-all-options-within-a-html-select-box-using-jquery\/","og_site_name":"Ian Carnaghan","twitter_card":"summary_large_image","twitter_site":"@icarnaghan","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.carnaghan.com\/knowledge-base\/how-to-remove-all-options-within-a-html-select-box-using-jquery\/","url":"https:\/\/www.carnaghan.com\/knowledge-base\/how-to-remove-all-options-within-a-html-select-box-using-jquery\/","name":"How to remove all options within a Html select box using JQuery - Ian Carnaghan","isPartOf":{"@id":"https:\/\/www.carnaghan.com\/#website"},"datePublished":"2018-03-21T20:10:14+00:00","dateModified":"2018-03-21T20:10:14+00:00","breadcrumb":{"@id":"https:\/\/www.carnaghan.com\/knowledge-base\/how-to-remove-all-options-within-a-html-select-box-using-jquery\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.carnaghan.com\/knowledge-base\/how-to-remove-all-options-within-a-html-select-box-using-jquery\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.carnaghan.com\/knowledge-base\/how-to-remove-all-options-within-a-html-select-box-using-jquery\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.carnaghan.com\/"},{"@type":"ListItem","position":2,"name":"How to remove all options within a Html select box using JQuery"}]},{"@type":"WebSite","@id":"https:\/\/www.carnaghan.com\/#website","url":"https:\/\/www.carnaghan.com\/","name":"Ian Carnaghan","description":"Software Developer, Blogger, Educator","publisher":{"@id":"https:\/\/www.carnaghan.com\/#\/schema\/person\/c689c24d516c51968a88b628860740a5"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.carnaghan.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.carnaghan.com\/#\/schema\/person\/c689c24d516c51968a88b628860740a5","name":"Ian Carnaghan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.carnaghan.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f2aa5baca80c2be728de43a975185d91?s=96&d=retro&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f2aa5baca80c2be728de43a975185d91?s=96&d=retro&r=g","caption":"Ian Carnaghan"},"logo":{"@id":"https:\/\/www.carnaghan.com\/#\/schema\/person\/image\/"},"description":"I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.","sameAs":["http:\/\/www.carnaghan.com","https:\/\/x.com\/icarnaghan"]}]}},"_links":{"self":[{"href":"https:\/\/www.carnaghan.com\/wp-json\/wp\/v2\/epkb_post_type_1\/5196"}],"collection":[{"href":"https:\/\/www.carnaghan.com\/wp-json\/wp\/v2\/epkb_post_type_1"}],"about":[{"href":"https:\/\/www.carnaghan.com\/wp-json\/wp\/v2\/types\/epkb_post_type_1"}],"author":[{"embeddable":true,"href":"https:\/\/www.carnaghan.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.carnaghan.com\/wp-json\/wp\/v2\/comments?post=5196"}],"version-history":[{"count":0,"href":"https:\/\/www.carnaghan.com\/wp-json\/wp\/v2\/epkb_post_type_1\/5196\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.carnaghan.com\/wp-json\/wp\/v2\/media?parent=5196"}],"wp:term":[{"taxonomy":"epkb_post_type_1_category","embeddable":true,"href":"https:\/\/www.carnaghan.com\/wp-json\/wp\/v2\/epkb_post_type_1_category?post=5196"},{"taxonomy":"epkb_post_type_1_tag","embeddable":true,"href":"https:\/\/www.carnaghan.com\/wp-json\/wp\/v2\/epkb_post_type_1_tag?post=5196"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}