HTML | DOM Select remove() Method Last Updated : 11 Jul, 2022 Suggest changes Share Like Article Like Report The Select remove() method in HTML DOM is used to remove an option from a drop-down list. This method accepts the index number as a parameter to removing the option from the desired position. Syntax: selectObject.remove(index) Parameters: It contains single parameter index which is mandatory and used to specify the index position of the element to be removed. Below program illustrates the Select remove() method in HTML DOM: Example: This example uses select remove() method to removing the selected option from the drop-down list. html <!DOCTYPE html> <html> <head> <title> HTML DOM Select remove Method </title> </head> <body style="text-align:center;"> <h1 style="color:green;"> GeeksforGeeks </h1> <h2 style="font-family: Impact;"> Select remove Method </h2><br> Select your preferred course from the drop-down list:<br> <select id="myCourses" size="8"> <option value="C++">c++</option> <option value="Placement">Placement</option> <option value="Java">Java</option> <option value="Python">Python</option> </select> <p> To remove a selected course from the dropdown list, double-click the "Remove" button. </p> <button ondblclick="myGeeks()"> Remove </button> <!-- Script to use DOM Select remove Method --> <script> function myGeeks() { var d = document.getElementById("myCourses"); d.remove(d.selectedIndex); } </script> </body> </html> Output: Before Clicking the button: After clicking the button: Supported Browsers: The browser supported by Select remove() Method are listed below: Apple Safari 3 and aboveInternet Explorer 5.5 and aboveFirefox 1 and aboveGoogle Chrome 1 and aboveEdge 12 and aboveOpera 12.1 and above S Shubrodeep Banerjee Follow 0 Article Tags : Web Technologies HTML HTML-DOM Explore HTML BasicsHTML Introduction5 min readHTML Editors5 min readHTML Basics7 min readStructure & ElementsHTML Elements5 min readHTML Attributes8 min readHTML Headings4 min readHTML Paragraphs5 min readHTML Text Formatting4 min readHTML Block and Inline Elements3 min readHTML Charsets4 min readListsHTML Lists5 min readHTML Ordered Lists5 min readHTML Unordered Lists4 min readHTML Description Lists3 min readVisuals & MediaHTML Colors11 min readHTML Links Hyperlinks3 min readHTML Images7 min readHTML Favicon4 min readHTML Video4 min readLayouts & DesignsHTML Tables10 min readHTML Iframes4 min readHTML Layout4 min readHTML File Paths3 min readProjects & Advanced TopicsHTML Forms5 min readHTML5 Semantics6 min readHTML URL Encoding4 min readHTML Responsive Web Design11 min readTop 10 Projects For Beginners To Practice HTML and CSS Skills8 min readTutorial ReferencesHTML Tags - A to Z List15+ min readHTML Attributes Complete Reference8 min readHTML Global Attributes5 min readHTML5 Complete Reference8 min readHTML5 MathML Complete Reference3 min readHTML DOM Complete Reference15+ min readHTML DOM Audio/Video Complete Reference2 min readSVG Element Complete Reference5 min readSVG Attribute Complete Reference8 min readSVG Property Complete Reference7 min readHTML Canvas Complete Reference4 min read My Profile ${profileImgHtml} My Profile Edit Profile My Courses Join Community Transactions Logout Like