Why return this.each(function()) in jQuery plugins?
        Posted  
        
            by Corey Sunwold
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Corey Sunwold
        
        
        
        Published on 2010-04-20T19:54:17Z
        Indexed on 
            2010/04/20
            20:03 UTC
        
        
        Read the original article
        Hit count: 243
        
jquery-plugins
|jQuery
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?
© Stack Overflow or respective owner