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
How to find a DOM node in Bliss which can be found in jQuery as:
jQuery('#menu-sidebar-menu li a:contains("Hello World!")')
The text was updated successfully, but these errors were encountered:
You can't do that with a selector, Bliss only supports the same CSS selectors that the browser supports. So you'd have to loop over them, like this:
$$('#menu-sidebar-menu li a').filter(a => a.textContent.indexOf("Hello World!") > -1);
Sorry, something went wrong.
No branches or pull requests
How to find a DOM node in Bliss which can be found in jQuery as:
The text was updated successfully, but these errors were encountered: