This one is bit harder than
$('a').css('color','#ff6600');
I am making a styleswitcher that must manipulate head a element css attribute
<head>
HEAD TAGS
<style type="text/css">
a{color:#ff6600;}
</style>
</head>
Reason why I cannot use $.css() is because it manipulates inline css style of any given a element on the page thus overriding for example menu hover link color or any other link color that is not originally ff6600.
Any help is appreciated.
aelement that does not have a specific override with another CSS selector?