I have a link which I want to addClass on mouseover like following:
$("#navbarlarge").on("mouseover","a",function(){
$(this).addClass("linkeffect");
})
The issue is that I also want to add a class to both ::before and ::after pseudo elements inside the link , tried this but doesn't work:
$(this).find("::before").addClass("beforeeffect");
how can i combine this selector with the pseudo element ?