-1

I have a dropdown where i can choose currency, how can i choose for Example EUR in the dropdown using js?

Dropdown code

Thanks in advance.

kreal
  • 1
  • 2

1 Answers1

0

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.