Gooody29,
<style>
a { color:rgb(241, 105, 105); }
a:hover { color:rgb(1, 105, 205); }
</style>
<h1>
<a href="#">click me and remove the mouse</a>
</h1>
<script>
var i,j, sel = /a:hover/;
for(i = 0; i < document.styleSheets.length; ++i){
for(j = 0; j < document.styleSheets[i].cssRules.length; ++j){
if(sel.test(document.styleSheets[i].cssRules[j].selectorText)){
alert(document.styleSheets[i].cssRules[j].style.cssText)
}
}
}
</script>