I have a compliant link tag:
<link rel="stylesheet" type="text/css" media="all" href="../css/screen.css" />
When I upload the site, it brings me all the css that is inside this file, but when I get the content with jQuery it does not return anything to me.
console.log( $('link').html() );
(an empty string)
If I make a call only from the selector the log returns me the element:
console.log( $('link') ); // assim eu obtenho o retorno abaixo
Object[link]
My question is how to get the contents of this css with jQuery.