You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the onSelect option only works for input click. If you click a label no function is triggered.
As a way around this I bound a click event separately to just the label.
It's worth noting because of the nature of labels and their "for" attribute, click events on the entire wrapping div cause the label to double (bubble) their calls. The only way around this for me is to separate the two as listed above.
The text was updated successfully, but these errors were encountered:
Using the onSelect option only works for input click. If you click a label no function is triggered.
As a way around this I bound a click event separately to just the label.
It's worth noting because of the nature of labels and their "for" attribute, click events on the entire wrapping div cause the label to double (bubble) their calls. The only way around this for me is to separate the two as listed above.
The text was updated successfully, but these errors were encountered: