Post by Trublu on Jun 14, 2011 9:38:52 GMT -8
Hey!
Okay, so I've put together this very rudamentary code to display certain links when I click on a certain year; I figured out (a way, at least) how to get the contents of the div to show up when I click. I'm stuck, however, at getting the previous contents to go away when I click on the next year. Here's what I'm working with:
Okay, so I've put together this very rudamentary code to display certain links when I click on a certain year; I figured out (a way, at least) how to get the contents of the div to show up when I click. I'm stuck, however, at getting the previous contents to go away when I click on the next year. Here's what I'm working with:
<script type="text/javascript">
function displayNews2011()
{
document.getElementById("default").innerHTML= document.getElementById("2011").style.display = '';
}
function displayNews2010()
{
document.getElementById("default").innerHTML= document.getElementById("2010").style.display = '';
}
function displayNews2009()
{
document.getElementById("default").innerHTML= document.getElementById("2009").style.display = '';
}
</script>
<div style="width: 33%; float: left;"><a href="#" onclick="displayNews2011()">2011</a></div>
<div style="width: 33%; float: left;"><a href="#" onclick="displayNews2010()">2010</a></div>
<div style="width: 33%; float: left;"><a href="#" onclick="displayNews2009()">2009</a></div>
<p id="default">Please click on any of the above years to diplay the available editions of the News.</p>
<p id="2011" style="display: none;">
<a href="newsmay_june11.pdf">May/June 2011</a>
<br /><br />
<a href="newsmarch_april11.pdf">March/April 2011</a>
<br /><br />
<a href="newsjan_feb11.pdf">January/February 2011</a>
<br /><br /></p>
<p id="2010" style="display: none;">
<a href="newsnov_dec10.pdf">November/December 2010</a>
<br /><br />
<a href="newssept_oct10.pdf">September/October 2010</a>
<br /><br />
<a href="newsjuly_aug.pdf">July/August 2010</a>
<br /><br />
<a href="newsmay_june.pdf">May/June 2010</a>
<br /><br />
<a href="newsmarch_april.pdf">March/April 2010</a>
<br /><br />
<a href="newsjan_feb.pdf">January/February 2010</a>
<br /><br /></p>
<p id="2009" style="display: none;">
<a href="newsnov_dec.pdf">November/December 2009</a>
<br /><br />
<a href="newssept_oct.pdf">September/October 2009</a>
<br /><br /></p>