I am trying to change the content inside a DIV from separate links when mouseover. The content is different with each link. I wanted the default content in the DIV to appear with mouseleave. I'm having trouble to figure this out with jquery. Can anyone point me in the right direction or have an example to help.
I figured out how to make the content change with mouseover, but I need help to return the original content with mouseleave.
Many thanks.
Here is my code:
<div id="CONTENT">My content needs to change here.</div>
<div id="nc_wrap2">
<a class="nc1" href="#">Link 1</a>
<a class="nc2" href="#">Link 2</a>
<a class="nc3" href="#">Link 3</a>
<a class="nc4" href="#">Link 4</a>
<a class="nc5" href="#">Link 5</a>
</div>