Since its inception few years back, Chrome has become a de-facto IDE for web development. I\'ve been using it\'s Canary(Version 28.0.1464.0) channel for quite a bit and been
Logging of HTML elements into the console makes the console view lose the last console message.
Instead of doing something like this:
console.log("Some logging message:", html_element)
try this (wrapped the messages with brackets)
console.log(["Some logging message:", html_element])