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
I'm trying to select all divs with an id ending in something. When I try the [$=] syntax I'm getting an Error: Unexpected value: = error message. The starting with selector [^=] works fine. Below is a simple example.
<script src="https://unpkg.com/[email protected]"></script>
<div _="init get <div[id$='ending-with']/> log its innerHTML">
<div id="test-ending-with">Test</div>
<div id="test-2-ending-with">Test</div>
</div>
The text was updated successfully, but these errors were encountered:
I'm trying to select all divs with an id ending in something. When I try the
[$=]
syntax I'm getting anError: Unexpected value: =
error message. The starting with selector[^=]
works fine. Below is a simple example.The text was updated successfully, but these errors were encountered: