I have a dropdown where i can choose currency, how can i choose for Example EUR in the dropdown using js?
Thanks in advance.
I have a dropdown where i can choose currency, how can i choose for Example EUR in the dropdown using js?
Thanks in advance.
I would do it like this:
Get the select element:
const select_element = document.querySelector('select[name="curr_pay"]')
Select the option with the value attribute equal to 'EUR'
select_element.value = 'EUR'
You can visit this page at w3schools for more information.