i have this html:
<ul id="list1" class="eventlist">
<li>plain</li>
<li class="special">special <button>I am special</button></li>
<li>plain</li>
</ul>
and I have this jquery code:
$('#list1 li.special button').click(function(event) {
var $newLi = $('<li class="special"><button>I am new</button></li>');
var $tgt = $(event.target);
});
My question is what is the difference between
var $tgt = $(event.target);
and
var $tgt = event.target;
event.target
is a reference to the DOM node.$(event.target)
is a jQuery object that wraps the DOM node, which lets you use jQuery's magic to query manipulate the DOM.In other words, you can do this:
but you can't do this: