working with frames (html)?

Mulatic

New member
I'm trying to put a music player in one frame, with song links on another so you can choose a song and listen to it while browsing the rest of the page. I can set up all the separate frames, I'm just not sure how to link the songs to the player in the other frame.

can anyone help?

please n thanks.
 
You need to give the frame a name... lets say, in the page where you establish the frameset you can use the property name="bla" on each frame.

So when you want to load another page in, say, frame "1" from frame "2" then place a link in frame "2" with property target="1".

Example:

[a href ="myothersong.html" target="1"] (replace the [ ] for < >)

If you are looking for a dynamic way of loading them, you would have to learn a bit of scripting, say, PHP. So that you can pass the name of the mp3 or song through the URL and load it directly in the player.

Have fun :)
 
Back
Top