Why return this.each(function()) in jQuery plugins?
- by Corey Sunwold
Some of the tutorials and examples I have seen for developing jQuery plugins tend to return
this.each(function () {
});
at the end of the function that instantiates the plugin but I have yet to see any reasoning behind it, it just seems to be a standard that everyone follows. Can anyone enlighten me as to the reasoning behind this practice?