Each <a
link is an anchor for jQuery to hide(show) certain divs.
I'm using this CSS to handle hover style:
ul.textMenu a:hover
{
border-bottom: 3px solid #ff5c00;
margin-bottom: -3px;
}
After the user clicks an item, I want that border-bottom
to persist. How do I do this?