This means that your choice contains too many matches, and the developer tools reduce their presentation in the console.
Try this in the console:
var a = [] for (var i = 0; i < 10; i++) { a.push('foobar'); }
If you try to check a
, you will see ["foobar", "foobar", "foobar", "foobar", "foobar", "foobar", "foobar", "foobar", "foobar", "foobar"]
. Now add some more elements:
for (var i = 0; i < 100; i++) { a.push('foobar'); }
Now, if you try to check it, you will see Array[110]
.
This does not mean that your selector is wrong, but if you expect fewer elements, this might be wrong.
source share