Skip to content
New issue

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

fix: Allow getElementsByClassName to accept a whitespace-separated list #1618

Merged
merged 3 commits into from
Dec 30, 2024

Conversation

kylehalleman
Copy link
Contributor

getElementsByClassName can accept a whitespace-separated list of classNames (see MDN and spec).

The current implementation prepends . to the className in querySelectorAll (i.e., classOne classTwo classThree -> .classOne classTwo classThree). This PR splits the className string by any amount of whitespace, then prepends a . to each separated className, then joins to make a single query to querySelectorAll (e.g., classOne classTwo classThree -> .classOne.classTwo.classThree).

Added test to confirm this new functionality.

@personalyisus
Copy link

This would be a solution for #1551

Copy link
Owner

@capricorn86 capricorn86 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for your contribution @kylehalleman! 🌟

Sorry that it took such a long time to get this in.

I have changed the solution a bit to improve performance by only using a replace().

@capricorn86 capricorn86 merged commit c738c4e into capricorn86:master Dec 30, 2024
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants