I am hoping to display a music library. I can construct multiple XML, one for:
- Artist
- Albums
- Album Details
Each Unique detail will have its own file, such that individual artists have their own file, individual albums have their own file, etc. I guess my only real question is that I would like to do something such as this:
List the albums, and their songs...
Album 1
- Song 1
- Song 2
- ...
Album 2
- Song 1
- Song 2
- ...
The important part is that I don't want to display the song listing unless someone clicks on a link for the album details. I have done this in the past by using CSS to hide the listing; however, this require ALL song information to be loaded. I would like to load all the album information only, and then only load a particular album's song listing, when requested and then place it in the proper area on the page. Is there a way to do this without having to load the entire page? If I must use javascript for this, how may I do this and guarentee a client can view the page?
- Artist
- Albums
- Album Details
Each Unique detail will have its own file, such that individual artists have their own file, individual albums have their own file, etc. I guess my only real question is that I would like to do something such as this:
List the albums, and their songs...
Album 1
- Song 1
- Song 2
- ...
Album 2
- Song 1
- Song 2
- ...
The important part is that I don't want to display the song listing unless someone clicks on a link for the album details. I have done this in the past by using CSS to hide the listing; however, this require ALL song information to be loaded. I would like to load all the album information only, and then only load a particular album's song listing, when requested and then place it in the proper area on the page. Is there a way to do this without having to load the entire page? If I must use javascript for this, how may I do this and guarentee a client can view the page?