Whatz up, I been at this for like 3 hours, looked for tutorials and errthang. But I aint havin no luck at all. And its gettin irritating tell you the truth. Now I got this code from this guy, and I need to know how to get rid of the white pop-up that pops up with the media player when my links are clicked. Here's the code: Code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> </head> <body> <html> <body> <script> function openpopup(){ var popurl="mp3player.html" winpops=window.open(popurl,"","width=224,height=125,top=50,left=10") } openpopup() </script> </div> </div> <div id="siteInfo">Welcome to underground Raido *Close This Window*</div> </div> <script type="text/javascript"> <!-- var menuitem1 = new menu(7,1,"hidden"); var menuitem2 = new menu(7,2,"hidden"); var menuitem3 = new menu(7,3,"hidden"); var menuitem4 = new menu(7,4,"hidden"); var menuitem5 = new menu(7,5,"hidden"); var menuitem6 = new menu(7,6,"hidden"); var menuitem7 = new menu(7,7,"hidden"); // --> </script> </body> </html> Here's the example (not my site): CLICK HERE!!! Again, I need a experienced coder to tweak the code so that the stupid white pop up will stop coming up in the background of the media player. THX in advance.
If you wanted to get rid of the MP3 Pop up you would just get rid of: Code: <script> function openpopup(){ var popurl="mp3player.html" winpops=window.open(popurl,"","width=224,height=125,top=50,left=10") } openpopup() </script>
The white popup you speak of only appears for a split second, it's just the mp3 player before it's fully loaded, and it repositions itself.