diff options
Diffstat (limited to 'src/jquery')
-rw-r--r-- | src/jquery/jquery.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index 5fd368aa0..a0d877517 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -3031,6 +3031,8 @@ jQuery.macros = { * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p> * @result [ <span>Hello Again</span> ] * + * @test isSet( $("#foo").children().get(), q("sndp", "en", "sap"), "Check for children" ); + * * @name children * @type jQuery * @cat DOM/Traversing @@ -3044,6 +3046,8 @@ jQuery.macros = { * @before <div><span>Hello</span><p class="selected">Hello Again</p><p>And Again</p></div> * @result [ <p class="selected">Hello Again</p> ] * + * @test isSet( $("#foo").children("[code]").get(), q("sndp", "sap"), "Check for filtered children" ); + * * @name children * @type jQuery * @param String expr An expression to filter the child Elements with |