( collection )
| 1597 | var element = jQuery( "<select><option>Foo</option><option selected>Bar</option><option selected>Baz</option></select>" ); |
| 1598 | |
| 1599 | function getSelectedOptions( collection ) { |
| 1600 | return collection.find( "option" ).filter( function( option ) { |
| 1601 | return option.selected; |
| 1602 | } ); |
| 1603 | } |
| 1604 | |
| 1605 | assert.equal( |
| 1606 | getSelectedOptions( element.clone() ).length, |