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
This code is fine: <input class="happy primary" type="radio" name="a1" value="a1" checked>
This code raise an exception: <input class="happy primary" type="radio" name="a1" value="1" checked>
Exception: happy.js:108 Uncaught SyntaxError: Failed to execute 'querySelector' on 'Document': '.happy-radio[data-name="a1"][data-value=1]' is not a valid selector.
The text was updated successfully, but these errors were encountered:
I use jQuery 3.1.0. jQuery is relevant for Happy library?
I got the same error even on clean project only with Happy library and using an example page from Happy library. Of course the error appears after I change radio input's value to numeric value="1" from value="a1" as I wrote above.
Except Chrome, I also tried Opera browser with the same error result.
This code is fine:
<input class="happy primary" type="radio" name="a1" value="a1" checked>
This code raise an exception:
<input class="happy primary" type="radio" name="a1" value="1" checked>
Exception:
happy.js:108 Uncaught SyntaxError: Failed to execute 'querySelector' on 'Document': '.happy-radio[data-name="a1"][data-value=1]' is not a valid selector.
The text was updated successfully, but these errors were encountered: