I need your help with something that should be simple, I hope :)
I have this html:
<div>div text</div>
<p>p text</p>
<span>span text</span>
<h1>h1 text</h1>
<ul>
<li>some li text</li>
<li>more li text</li>
</ul>
I need jQuery to color selected text to red every time that element is clicked. Now, there might be some other elements too so keep that in mind. Also, only selected element should change the color.
As an example here is some simple code that will do exactly what I need but only for div element:
$('div').click(function() {
$(this).css({'color':'red'});
});
What is the simplest code to have the same functionality for all elements in html.
Thanks!