hinch
09-02-2008, 02:16 PM
Well I thought it would be fairly straight forward :D
Basically I have a simple menu and when someone mouses over it I want it to change the contents of a <div> below is the code I thought would work however it appears not to work. Have I made a newbie mistake?
<div id="subheader2">
<p>
<ul class="menu red">
<li class="current"><a href="index.php" onmouseover="document.getElementById('headerdescription').innerText ='Home Sweet Home';">HOME</a></li>
<li><a href="index.php?page=about" onmouseover="document.getElementById('headerdescription').innerText ='Find out more about me and what I can do for you';">ABOUT ME</a></li>
<li><a href="index.php?page=ethos" onmouseover="document.getElementById('headerdescription').innerText ='What Drives me and what I want to achieve with my work';">ETHOS</a></li>
<li><a href="index.php?page=portfolio" onmouseover="document.getElementById('headerdescription').innerText ='See some of my previous work, including descriptions, pictures and who I've worked for';">PORTFOLIO</a></li>
<li><a href="index.php?page=clients" onmouseover="document.getElementById('headerdescription').innerText ='A complete list of everyone I've ever worked for including links to their sites';">CLIENTS</a></li>
<li><a href="index.php?page=contact" onmouseover="document.getElementById('headerdescription').innerText ='So you like what you see? Why not drop me a line.';">CONTACT ME</a></li>
</ul>
</p>
</div>
<div id="subheader3">
<p>
<div id="headerdescription">asddsa</div>
</p>
</div>
Basically I have a simple menu and when someone mouses over it I want it to change the contents of a <div> below is the code I thought would work however it appears not to work. Have I made a newbie mistake?
<div id="subheader2">
<p>
<ul class="menu red">
<li class="current"><a href="index.php" onmouseover="document.getElementById('headerdescription').innerText ='Home Sweet Home';">HOME</a></li>
<li><a href="index.php?page=about" onmouseover="document.getElementById('headerdescription').innerText ='Find out more about me and what I can do for you';">ABOUT ME</a></li>
<li><a href="index.php?page=ethos" onmouseover="document.getElementById('headerdescription').innerText ='What Drives me and what I want to achieve with my work';">ETHOS</a></li>
<li><a href="index.php?page=portfolio" onmouseover="document.getElementById('headerdescription').innerText ='See some of my previous work, including descriptions, pictures and who I've worked for';">PORTFOLIO</a></li>
<li><a href="index.php?page=clients" onmouseover="document.getElementById('headerdescription').innerText ='A complete list of everyone I've ever worked for including links to their sites';">CLIENTS</a></li>
<li><a href="index.php?page=contact" onmouseover="document.getElementById('headerdescription').innerText ='So you like what you see? Why not drop me a line.';">CONTACT ME</a></li>
</ul>
</p>
</div>
<div id="subheader3">
<p>
<div id="headerdescription">asddsa</div>
</p>
</div>