Applied accessibility date picker

Tell us what’s happening:
Describe your issue in detail here.
i cant run the program but the code is right, it seems to pick the input if i change it to input1 but the rest still dont pick it up

  **Your code so far**

<body>
<header>
  <h1>Tournaments</h1>
</header>
<main>
  <section>
    <h2>Mortal Kombat Tournament Survey</h2>
    <form>
      <p>Tell us the best date for the competition</p>
      <label for="pickdate">Preferred Date:</label>

      <!-- Only change code below this line --><input1 type="date" id="pickdate" name="date" >
      <!-- Only change code above this line -->

      <input type="submit" name="submit" value="Submit">
    </form>
  </section>
</main>
<footer>&copy; 2018 Camper Cat</footer>
</body>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:99.0) Gecko/20100101 Firefox/99.0

Challenge: Add an Accessible Date Picker

Link to the challenge:

There is no such element as input1 and when I switch it to just input your code passes all the tests.

Are you saying it fails for you with input? If so which test is failing?

1 Like

yes it fails with input but only input1 registers ,i put the pictures below on the error


well i cant put the other picture for some reason but the first part has a check with input1 instead of input

image

Remove the 1 and it and it passes.

If it DOESN’T pass after removing it, let us know. There may be something wrong with your browser.

OMG thank you so much, it was my browser i just switched to google chrome and it worked fine!

1 Like

Good. Keep this in mind in the future if something seems like it’s failing and it shouldn’t be.

And of course… You can come back here and hang out in the forums, if have any more questions.

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