How to remove item from dropdownlist in Javascript Q & A › How to remove item from dropdownlist in Javascript 0 Vote Up Vote Down Admin Staff asked 4 years ago How to remove item from dropdownlist in Javascript Share this:TwitterFacebookWhatsAppPinterestLike this:Like Loading... 1 Answers 0 Vote Up Vote Down Admin Staff answered 4 years ago function removeitemfromdropdownlist(){ var len = document.getElementById(‘dropdownlistid’).options.length; for(i=len-1; i>=1; i–) { document.getElementById(‘dropdownlistid’).options.remove(i); }} Share this:TwitterFacebookWhatsAppPinterestLike this:Like Loading...