I have this CSS
#popup .title:hover:after {
content: "hide";
position: absolute;
top: 3px;
right: -32px;
background: orange;
padding: 2px 4px;
font-size: 10px;
border-radius: 4px;
}
and wanted to use a click event on it to .remove() the <div id="#popup"> But:
$('#popup .title:hover:after').length
returns 0 on document ready..
Is there a way to do this?