How can I get css property for selector?
having html
<body>
<a class="my_class" href="/" title="link"/>
</body>
and some properties for my_class
.my_class {
color: red
}
in JS code I'm using cheerio lib:
var content = cheerio.load(html_content_page);
var selector = "a.my_class";
So, how can I get color
property using above selector?