We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you call mutate("#myid", ...), once a matching element is found, we can stop waiting for new elements to appear, since ids are unique on a page.
mutate("#myid", ...)
[^,]*#id
body
html
We can also add an optional 4th argument to mutate with config options, one of which explicitly says to only match the first element found.
mutate
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If you call
mutate("#myid", ...)
, once a matching element is found, we can stop waiting for new elements to appear, since ids are unique on a page.[^,]*#id
- id match (with optional narrowing prefix)body
orhtml
- specific elements that can only exist once on a pageWe can also add an optional 4th argument to
mutate
with config options, one of which explicitly says to only match the first element found.The text was updated successfully, but these errors were encountered: