When I console log a jquery object eg.
var s = $("#item");
console.log(s);
I get something like this
[div#item, context: document, selector: "#item", jquery: "1.9.1", constructor: function, init: function…]
I remember before ( one month ago or so ), I would get something like:
[<div id="item">pas</div>]
Is this change in Chrome itself? Or there was a change in jquery? Or I actually did something to make output look differently
I find this second output much easier to read and I can hover over this and have it marked on page. Now I get too much infos it's quite hard to read