What's the jQuery equivalent for each():
$(".element").each(function(){
// do stuff
});
when attaching a function to a single element, like #element ?
|
What's the jQuery equivalent for each():
when attaching a function to a single element, like |
|||
|
You can always reference the jQuery object in a variable:
...then manipulate it.
If the reason you wanted
The two of these are equivalent, and will retrieve the DOM element that would be referenced as
I'd note that it isn't necessarily bad to use each to iterate over a single element. The benefits are that you have easy access to the DOM element, and you can do so in a new scope so you don't clutter the surrounding namespace with variables. There are other ways to accomplish this as well. Take this example:
|
|||||
|
|
To directly answer your question, You can also omit the
If you need to reference the object multiple times, make a variable:
|
||||
|
|
|
Use
There are other selectors too. When you use the id in the selector, you will only get one element. This is the main difference between You can still use each if only one (or 0) element is returned. Also, you can skip each altogether if you want to link an event. You use |
|||
|
|
|
If there is only 1 element, you can access it normally using the selector.
|
||||
|
|
|
Behind the scenes, It is essentially† the same as:
† There's more to it than this, involving calling the function in the context of the map element etc. It's implementation is to provide a convenient way to call a function on |
|||||||
|
|
Do you mean like $('#element').children().each() supposing you have something like a ul with an id and you want the li each inside it? |
|||
|
|
eachshould be used when you need to distinguish between elements for example you have 10 buttons and upon click you want to alert the clicked button ID or text. Otherwise just omit theeachand the function will be applied to all elements. – Shadow Wizard Jan 31 '11 at 22:48