I have this HTML code:
<span id="one">one</span>
<div>
<span>two</span>
</div>
<span id="click">click</span>
$("#click").click(function(){
$(this).css('color', 'red');
})
I would like to be able to change the color of
<span>two</span>
when I click the "click" span but without adding any custom CSS class or id attribute using jQuery.