Quote:
Originally Posted by Menime
It happens when they click on the link in the navbar to open the player. I am trying to find out what version of IE they all use the majority so far have been 7.
|
In the launch code you'll see this line:
HTML Code:
<a href="javascript:NewWindow=window.open('mp3playerindex.php?do=viewmp3playerpopup','newWin','width=500,height=500,left=0,top=0, toolbar=No,location=No,scrollbars=1,status=No,resizable=No,fullscreen=No');
NewWindow.focus(); void(0);">vbMp3 Player</a>
Change the relative url from this:
HTML Code:
mp3playerindex.php?do=viewmp3playerpopup
To an absolute url like this:
HTML Code:
http://www.yourdomain.com/forums/mp3playerindex.php?do=viewmp3playerpopup
Obviously changing the example url part depending on what your forum root is named, etc.
Hope that helps!