with this code
$(document).on('click', '.docs-tag', function(event){
console.log($(event.target))
})
I expect to see
[<some html>]
but instead get
[span.icon-tag docs-tag child_hover dropdown-open, context: span.icon-tag docs-tag child_hover dropdown-open, constructor: function, init: function, selector: "", jquery: "1.8.2"…]
I have recently upgraded to jquery 1.8.2. Has there been a change in how $(event.target) us handled?