Test cases
Test #1 Title *
Async
Code * var $test1 = $('.test1' ),
$test2 = $('.test2' ),
$test3 = $('.test3' ),
$test4 = $('.test4' ),
$test5 = $('.test5' );
Test #2 Title *
Async
Code * var $test1 = $list.find ('.test1' ),
$test2 = $list.find ('.test2' ),
$test3 = $list.find ('.test3' ),
$test4 = $list.find ('.test4' ),
$test5 = $list.find ('.test5' );
Title *
Async
Code * var $test1 = $('#list .test1' ),
$test2 = $('#list .test2' ),
$test3 = $('#list .test3' ),
$test4 = $('#list .test4' ),
$test5 = $('#list .test5' );
Title *
Async
Code * var $test1 = $('#list li.test1' ),
$test2 = $('#list li.test2' ),
$test3 = $('#list li.test3' ),
$test4 = $('#list li.test4' ),
$test5 = $('#list li.test5' );
Title *
Async
Code * var $test1 = $list.find ('li.test1' ),
$test2 = $list.find ('li.test2' ),
$test3 = $list.find ('li.test3' ),
$test4 = $list.find ('li.test4' ),
$test5 = $list.find ('li.test5' );
Title *
Async
Code * var $test1 = $('li.test1' ),
$test2 = $('li.test2' ),
$test3 = $('li.test3' ),
$test4 = $('li.test4' ),
$test5 = $('li.test5' );
Title *
Async
Code * var $test1 = $('li' ).find ('.test1' ),
$test2 = $('li' ).find ('.test2' ),
$test3 = $('li' ).find ('.test3' ),
$test4 = $('li' ).find ('.test4' ),
$test5 = $('li' ).find ('.test5' );
Title *
Async
Code * var $test1 = $li.find ('.test1' ),
$test2 = $li.find ('.test2' ),
$test3 = $li.find ('.test3' ),
$test4 = $li.find ('.test4' ),
$test5 = $li.find ('.test5' );