How to Remove a Selected Item From ListBox
- 1). Right-click the HTML page that contains your ListBox. Click "Open With," and then double-click the editor you use to create HTML code.
- 2). Press the "Ctrl" and "F" keys to open the "Find" dialog window. Type "<select" in the text box and press "Enter" to quickly scroll to the ListBox location.
- 3). Locate the option tag that contains the "selected" property. This is the default selected value. Remove the "selected" property to remove the selection. If you want to remove the value altogether from the ListBox. Delete all of the "option" tag with its value.
- 4). Press the "Ctrl" and "S" keys to save the changes.