Files
jquery/test
Michał Gołębiowski 2fa3bac7eb Core: Make jQuery objects iterable
Make iterating over jQuery objects possible using ES 2015 for-of:

    for ( node of $( "<div id=narwhal>" ) ) {
        console.log( node.id ); // "narwhal"
    }

(partially cherry-picked from bb026fc12c)

Fixes gh-1693
2015-06-13 23:31:27 +02:00
..
2015-06-13 23:31:27 +02:00
2015-06-13 23:31:27 +02:00
2013-02-28 15:55:55 -05:00