Does anyone see why this jquery click function would not work? It is not apparent to me why it would not. Thank you !
Here is my selector
$(".ILikeItImg").click(function() {
alert("Handler for .click() called.");
});
Here is the tag I want the click function to happen on.
<img alt="I Like It" class="ILikeItImg" src="../QuickTagILikeIt_24.png" />
Here’s a working DEMO !!
And the code