I would like to know how I can get values of the css styles, for example the color.
<style>
.vermellet{color:red;}
</style>
<script>
//.vermellet{color:red;}
$(document).ready(function() {
$("body").append("<a href='www.google.com'>google</a>");
</script>
</head>
<body>
<p class="vermellet">Hola</p>
<p>Adios</p>
<p>Buenos dias</p>
</body>
</html>