<a id='123' href='www.stackoverflow.com'>
Hello <span style='color:#c0c0c0;text-decoration: underline;'>World</span>
</a>
I currently change the link color by doing this
var chosenclass = document.getElementById('123');
chosenclass.style.color = '#000000';
But now I'd like to change the span by only having a reference to the chosenclass object. How can I do that ?