Problem w/ select in Survey Form

Hello everyone, I finished building my survey form, but can’t seem to find the source of the error stating:
You should have a select field with an id of dropdown.

Here you can find my html code, maybe you can see my error here.

<main>
    <div class="form-center">
      <form action="#" id="survey-form">
        <p id="description">Thank you for taking the time to help improve this fanpage for our kings from Stray Kids!</p><br><br>
        <label for="name" id="name-label">Username</label><br><br>
        <input id="name" name="name" type="text" required placeholder="Enter your name"><br><br>
        .......
        <label for="dropdown" id="dropdown">Select the year you fell in love with Stray Kids</label><br><br>
        <select name="dropdown" id="dropdown">
          <option value="">--Please choose an option--</option>
          <option value="2017">2017 - pre-debut</option>
          <option value="2018">2018 - debut & I am-era</option>
          <option value="2019">2019 - Clé-era</option>
          <option value="2020">2020 - Go Live-era</option>
          <option value="2021">2021 - Noeasy-era</option>
          <option value="2022">2022 - Oddinary-era</option>
        </select><br><br>```
.......

Thank you very much in advance for your help!
Greetings, Mey

I found the #dropdown element! It is not a select element

1 Like

I got it now! Thanks so much!

Mind helping me out? I’ve got no hits so far and I’m so freaking stuck. Can’t think of anything else to try

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.