I have in another element's click function to set a delete icon element's display to none, and then later I set it back to block, using JQuery.
However in the css file for the class, I have
.pageDeleteIcon
{
display:none;
}
.pageButton:hover .pageDeleteIcon
{
display: block;
}
pageButton is the parent div that contains the delete Icon.
After the click function is run though, it seems to disable the css that makes it appear when hovering the parent, and disappear when it isn't. Is there anyway to reset the style to the css file?
Thanks