removeHi how can i remove using jquery styles after my element.
I have following:
    .arrow {
        background-color: #FAFAFA;
        position: absolute;
        bottom: 60%;
        right: 60%;
        left: 20%;
        z-index: 1000;
    }
    .arrow:after {
        left: 100%;
        bottom: 0px;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-width: 15px;
        border-bottom: 30px solid #FAFAFA;
        border-right: 30px solid transparent;
    }
and my question is how can i remove the styles .arrow:after using jquery and later apply it again ?
