How to capture bootstrap dropdown values in react without third-party libraries?
Solution 1:
The a
tag doesn't support value
attribute (https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a).
Similarly, you can't have option
tag without a select
/datalist
/optgroup
(https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option).
If you need some type of value associated with the tags anyway, use something like: data-value={your_value}
. And then work with the dataset of the element clicked.