We're making a discography page.
Now, I'm going to have a Table with Two Columns. Left column will be the albums. Right column will actually be whatever album is clicked on.
I was wondering, is it possible to make an iframe to display the album that is clicked from the left column, and have it to where I can just click on the album name, and it will change what is inside the iframe without having to make multiple pages with a different iframe frame sources? Is that possible? I think it can be done with a drop down form, but I want it to be done just with regular clickable links?
In short:
CODE
<table>
<tr>
<td>Link #1<br>Link #2</td>
<td>iframe</td>
</tr>
</table>
<tr>
<td>Link #1<br>Link #2</td>
<td>iframe</td>
</tr>
</table>
So can it be done and what script would I need? If possible, could it be shown as a small example rather than the straight simple code (nothing over the top though)
