How to click on the pseudo Element using jQuery I'm unable to click on before element to change the background color:
$(".box:before").on('click',function(){
(".box h1").css("background-color","red");
});
.box:before{
content:"";
width:10px;
height:10px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="box">
<h1>hello</h1>
</div>