With the update of Chrome to version 2.3, I had the following problem. When ik is debugging something like
console.log($('canvas'))
Usually I got the code in the console (in this case html) that I could hover over, so the object was selected in HTML. Now I got this:
[<canvas>, <canvas>, <canvas>, prevObject: jQuery.fn.jQuery.init[1], context: #document, selector: "canvas"]
Is there a parameter in which it can be changed back, so I get normal html with hover on the HTML page?
source share