I have the following HTML:
<div class="one">This is a piece of content</div>
and this CSS:
.one:before{
   content: 'done';
}
How can I console.log this content value with jQuery?
I have the following HTML:
<div class="one">This is a piece of content</div>
and this CSS:
.one:before{
   content: 'done';
}
How can I console.log this content value with jQuery?
