Files
jquery/test/unit
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-05-29 20:33:08 +03:00
2015-05-12 10:29:07 -04:00