I am trying to retrieve the CSS value of font awesome pseudo element. This is the css:
.pe-icon--check:before {
content: '\f00c';
}
I use this query
var symb = window.getComputedStyle($('.pe-icon--check').get(0), ':before').getPropertyValue('content');
But the result I get is a small rectangle
. The value I need is \f00c
.
Could someone please help me fix this?