yoyoyoyo |
01-19-2005 11:28 PM |
Quote:
Originally Posted by yoyoyoyo
or:
Code:
Listening to the<br><a href="vb_jukebox.php">Jukebox</a>
|
excuse me- I am an idiot- I pasted the wrong code- what I meant to post was a popup window:
try this:
Code:
<script>
function doPopUp(){
doPopUpWindow = window.open("vb_jukebox.php","jukepop","location=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,scrollbars=yes,resizable=yes,left=100,top=100,screenX=100,screenY=100");
}
</script>
listening to the Jukebox<br><a href="javascript:doPopUp()">JUKEBOX</a>
or for popping up the window on mouseover:
Code:
<script>
function doPopUp(){
doPopUpWindow = window.open("vb_jukebox.php","jukepop","");
}
</script>
listening to the Jukebox<br><a href="#" onmouseover="doPopUp()">JUKEBOX</a>
|