Skip to content
Advertisement

javascript choose one element at a time

I have a code below

JavaScript
JavaScript

When I click on a button it first performs validation, it checks if the element was clicked (there are 3 elements in total), if not, it changes border color to red( hex color #f04747). The problem is when I choose one element the other two change color to red but It shouldn’t do that, because I already chose.

Advertisement

Answer

If you want to validate the options, you need to check if at least one is selected. If one is selected, then it is valid, and you can clear the others. You can pass the this reference into a singular function that handles checking if the options being iterated over matches the intercepted element.

I modified the premium option variables by storing them inside of a data structure. This males it east to traverse the options. There is still more work you can do to this. For instance, you can eliminate the clicked variables and just modify the dataset or data-attributes” of the elements. I sort of accomplished this via: curr.el.dataset.matches = matches.

Example

  1. Click “Next”
  2. Two errors should have occurred (text input and the premium options)
  3. Select a premium option
  4. Click “Next”
  5. Only one error is present now (text input)

JavaScript
JavaScript
JavaScript

A better way

A better way to handle validation would be to have a hidden field that gets updated when you change the tier selection. Try to use as much of the built-in <form> as possible, and don’t forget about the required input attribute.

Update: To properly submit the form, make sure the <button> is type="submit" and the <form> is novalidate="true" and properly return true/false for your validation.

JavaScript
JavaScript
JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement