I have the following HTML <select>
element:
<select id="leaveCode" name="leaveCode"> <option value="10">Annual Leave</option> <option value="11">Medical Leave</option> <option value="14">Long Service</option> <option value="17">Leave Without Pay</option> </select>
Using a JavaScript function with the leaveCode
number as a parameter, how do I select the appropriate option in the list?
Use the value property to set the value of a select element, e.g. select. value = 'new value' . The value property can be used to set or update the value of a select element. To remove the selection, set the value to an empty string.
function myNewFunction(element) { var text = element. options[element. selectedIndex]. text; // ... }
You can use this function:
selectElement('leaveCode', '11') function selectElement(id, valueToSelect) { let element = document.getElementById(id); element.value = valueToSelect; }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With