I'm doing something very simple, like this:
<div class='item'>HI I'm an item</div>
.item:hover:after {
content: "Delete";
}
What i want to do is when the user hovers over the div, for the word Delete to appear and have it possible that when the user clicks on the word Delete, for me to run some jQuery (to actually remove this item)
Is this possible?