I have css like:
.support-hub .app-detail:after {
content: "";
display: table;
clear: both;
}
Firebug shows it as
.support-hub .app-detail::after {
clear: both;
content: "";
display: table;
}
In my code I am doing this:
$('.support-hub .app-detail:after').css({'display':'inline'});
But that display property is not getting changed. Pls help. Very less documentation available for :after css manipulation with jQuery