I want to change below the :beforevalue of css pseudo element topusing javascript or jQuery dynamically ... how can I do this?
#buble{
height:70px;
width:980px;
background-color:#bce5a5;
display:none;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
box-shadow:0px 0px 4px #dadada;
text-indent:35px;
color:#4a8f44;
font-weight:bold;
font-size:14pt;
}
#buble:before{
content:"";
display:block;
position:absolute;
top:77px;
left:555px;
border-width:11px 7px 0px;
border-style:solid;
border-color:#bce5a5 transparent;
width:0;
height:0;
}
source
share