Files
jquery/test/unit
Michał Gołębiowski bb026fc12c 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"
    }

Fixes gh-1693
2015-06-13 23:14:36 +02:00
..
2015-06-13 23:14:36 +02:00
2013-04-15 19:26:34 +02:00
2015-05-12 10:26:21 -04:00