I am using web icon font and I am trying to get the content of :before
pseudo selector like below
var ele = document.querySelector('.flaticon-fishing2');
var beforeEle = ele.previousSibling;
// Now befpreEle does not seem to have anything.
// I want to get the binary content code value of before element
I have tried this too
var content = window.getComputedStyle(
document.querySelector('.flaticon-fishing2'), ':before'
).getPropertyValue('content');
It is trying to display icon, but not giving the content.
Is there any way to get this?