Size() and Children() returning different results
Hi,
I have the code:
- console.log($(this).parent().parent().children());
- console.log($(this).parent().parent().size());
And the output is:
- jQuery(td.center, td.center, td.center, td.center, td.center, td, td)
- 1
Why is the size() 1 and not 7? I can't quite figure it out.
Many thanks!
Chris