I have already setup a web page, it is hosted and running. I've got an mp3 file linked on that page, however, when anybody clicks the link it plays but doesn't allow the user to continue viewing the page.
If I want to get the audio to play on a 2nd page, or pop-up page, what should I do?
I was thinking I would need to host a new domain? Then put the mp3 file on that 2nd domain?
Is this correct?
ALSO - If I set up a 2nd domain and put the mp3 file on it, how do I make it so that the viewer clicks the link on Page #1, but it pops up on Page # 2?
PLEASE help! The more detailed the answer, the better!
Thanks!!
Need to make audio file play on 2nd web page? How?
No, you definitely don't need a new domain. If you want something to pop-up in a new window, then add the "target=" clause to your anchor tag. That is, let's say your link looks like this:
%26lt;a href="jones.mp3"%26gt;My MP3 file%26lt;/a%26gt;
Add this:
target="_blank"
So that it looks like this:
%26lt;a href="jones.mp3" target="_blank"%26gt;My MP3 file%26lt;/a%26gt;
and your link will open up in a new window.
No comments:
Post a Comment