Hi there,
I'm working on a homepage for a band in which i want to include a lyrics page that offers a list of song titles and on clicking them displays the lyrics in an extra area. Since I don't want to solve this with frames, I searched around and found this thread.
I tried to implement the code, but since the page that this topic is about doesn't exist anymore it was kind of difficult to figure it out. The more so as I do not really have much idea about javascript.
The javascript I put is
The whole page is here: http://www.lamento-music.com/test/en/lyrics.html
Can anybody enlight me here?
please!
I'm working on a homepage for a band in which i want to include a lyrics page that offers a list of song titles and on clicking them displays the lyrics in an extra area. Since I don't want to solve this with frames, I searched around and found this thread.
I tried to implement the code, but since the page that this topic is about doesn't exist anymore it was kind of difficult to figure it out. The more so as I do not really have much idea about javascript.
The javascript I put is
and the body part where the lyrics are supposed to appear<script language="Javascript">
var lyricsArray = new Array();
lyricsArray[0] = "<p><h3>Dunkle Blumen</h3><br />Dunkle Blumen blühen, ...</p>";
lyricsArray[1] = "<h3>Time</h3><br />Have you seen...</p>";
lyricsArray[2] = "<h3>Outra Estória</h3><br />Outra estória...</p>";
function changeContent(songNo)**
var contentBox = document.getElementById("songStuff");
contentBox.innerHTML = lyricsArray[songNo];
</script>
Well, i tried different ways to declare the both fields as songstuff or contentbox, but nothing seems to get this working...<div id="songStuff" class="main">
<div class="inh_div_left">
<p><h2>Song</h2></p>
<ul>
<li><a href="#" onClick="changeContent(0)">Dunkle Blumen</a></li>
<li><a href="#" onClick="changeContent(1)">Time</a></li>
<li><a href="#" onClick="changeContent(2)">Outra Estória</a></li>
</ul>
</div>
<div class="inh_div_right"><p id="contentBox"></p></div>
</div>
The whole page is here: http://www.lamento-music.com/test/en/lyrics.html
Can anybody enlight me here?