how to change a::before style by click in jquery?
$("li").click(function () {
 $(this).children('a').css('color','red');
 $(this).children('a::before').css('color','green');
});li > a::before{
 content: "Hello";
padding:5px 10px;
}<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<ul>
<li><a>World</a></li>
<li><a>World</a></li>
<li><a>World</a></li>
</ul>each item has ::before in css file i want to change style them by click
 
    