My contribution of an .everyN() traversal method#1
Open
GloriaNOnwuneme wants to merge 1 commit into
Open
Conversation
I'd like to propose the addition of an .everyN() traversal method to the jQuery UI project - you can think of it as a superset of the existing .odd() and .even() methods. I've tried to copy the jQuery description of these methods below to explain how .everyN() would work: everyN(N, "skip") Description: Reduce the set of matched elements to every Nth one in the set. Add the string "skip" as an optional parameter to exclude every Nth element from the total set of matched elements.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi- I'd like to contribute with the addition of an .everyN() traversal method to the jQuery UI project - think of it as a superset of the existing .odd() and .even() methods. Added bonus: users won't have to worry about zero-indexing when using this method!
I've uploaded a js.file with the 'plugin' I wrote, and have imitated the official jQuery description of the even() method below to explain how .everyN() would work:
everyN(N, "skip")Description: Reduce the set of matched elements to every Nth one in the set. Add the string "skip" as an optional parameter to exclude every Nth element from the total set of matched elements.
The following are examples of how to use
.everyN():("li").everyN(2).addClass("anonymous")- add the classanonymousto every second list item (equivalent to("li").even().addClass("anonymous")).("li").everyN(2, "skip").addClass("anonymous")- add the classanonymousto everything BUT every second list item (equivalent to("li").odd().addClass("anonymous")).("li").everyN(5).addClass("anonymous")- add the classanonymousto every fifth list item.("li").everyN(5).addClass("anonymous")- add the classanonymousto everything BUT every fifth list item.