Ok, I think I get what your saying...
Your saying that your trying to load a hidden music player *in a hidden frame* and then the page the user inteaded to go to *example: home page or something like that*...
Now, you could use a hidden <div> tag by doing this
first step (making it hidden)
Code:
<style type="text/css">
.hiddenmusicplayer{
visiblity: hidden;
}
</style>
Put the css code above into the head *or into a stylesheet if you have one*
Now to put it in there:
Code:
<div class="hiddenmusicplayer">Put your music player content here</div>
Place that code above into the body of your page...
Advantages of it:
Will be totally invisible
Disadvantages:
If user refreshs or changes url the music will stop, and if goes to another page with this on it, will not continue.
If you want the music to continue if the user clicks any links (except for links to the same page) on your site, hold on because i might have a solution *using Ajax...*
Bookmarks