How to read elements by using for each loop in jquery ?
function(index, Element) -- A function to execute for each matched element.
The
.each()
method is designed to make DOM looping
constructs concise and less error-prone. When called it iterates over
the DOM elements that are part of the jQuery object. Each time the
callback runs, it is passed the current loop iteration, beginning from
0. More importantly, the callback is fired in the context of the current
DOM element, so the keyword this
refers to the element.
No comments:
Post a Comment