Is this phrase always true?
$(\"p\").click(function(event) {
alert( event.currentTarget === this );
});
Is one method preferred over the o
Part of your answer is above. I hope its clear enough.
No console.log(this)
and console.log($j(this))
will not give you the same result. $(this) converts this to a jQuery Object and hence you can call .css like methods which can be called on jQuery objects($(this)) and not the HTML elements which will be this
.