I am looking to customize the CSS for the font style.
<div id="a" onmouseover="chbg('red','b')" onmouseout="chbg('white','b')">This will change b element</div>
<div id="b">This is element b</div>
<div id="f" onmouseover="chbg('blue','g')" onmouseout="chbg('white','g')">This will change g element</div>
<div id="g">This is element g</div>
<div id="j" onmouseover="chbg('yellow','k')" onmouseout="chbg('white','k')">This will change k element</div>
<div id="k">This is element k</div>
From what I understand, this uses the 'chbg' function to modify background color.
If I want to add underline and change font color, how can I do this?
You can view a live example here: http://jsfiddle.net/NAuxn/