Web Design and Development Forums

Music on/Off (does not stop in IE7) Need Help!

This is a discussion on "Music on/Off (does not stop in IE7) Need Help!" within the JavaScript Forum section. This forum, and the thread "Music on/Off (does not stop in IE7) Need Help! are both part of the Program Your Website category.


Go Back   Webforumz.com > Program Your Website > JavaScript Forum

Welcome to Webforumz.com.
Register Now Register now!

Reply
 
LinkBack Thread Tools Rate Thread
Old May 5th, 2008, 15:30   #1 (permalink)
New Member
 
Join Date: May 2008
Location: Amsterdam
Posts: 4
Music on/Off (does not stop in IE7) Need Help!

Hello there

I am trying to fix a bug in the following script as the music does not stop in IE 7 if the file is an .mp3 but does in IE 5 +6 and Firefox. I hope you can help. Thank you!
Code: Select all
<script type="text/javascript">

var sound2Embed = null;

function init() {
}


function sound2Play() {
if ( !sound2Embed ) {
sound2Embed = document.createElement("embed");
sound2Embed.setAttribute("src", "audio/tequila.mp3");
sound2Embed.setAttribute("hidden", true);
sound2Embed.setAttribute("autostart", true);
} else sound2Stop();
sound2Embed.removed = false;
document.body.appendChild(sound2Embed);
}

function sound2Stop() {
if ( sound2Embed && !sound2Embed.removed ) {
document.body.removeChild(sound2Embed);
sound2Embed.removed = true;
}
}

</script>

<body onload="init();">

<input type="submit" onclick="sound2Play();" name="Play 2" value="Play 2">

<input type="submit" onclick="sound2Stop();" name="Stop 2" value="Stop 2">

Last edited by aso186; May 5th, 2008 at 20:07.
Webill is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old May 6th, 2008, 13:07   #2 (permalink)
Moderator
 
spinal007's Avatar
 
Join Date: Mar 2004
Location: Good Ol'London
Age: 22
Posts: 1,609
Blog Entries: 1
Send a message via ICQ to spinal007 Send a message via MSN to spinal007 Send a message via Yahoo to spinal007 Send a message via Skype™ to spinal007
Re: Music on/Off (does not stop in IE7) Need Help!

try giving the embed an id and using this code instead:
document.body.removeChild(document.getElementById( "someID"));
__________________
Diego - SEO Consultant London (My Blog | Fight Me)
jQuery: Star Rating - Multiple File Upload - FCKEditor/Codepress
Before we work on artificial intelligence why don't we do something about natural stupidity?
spinal007 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old May 11th, 2008, 11:27   #3 (permalink)
New Member
 
Join Date: May 2008
Location: Amsterdam
Posts: 4
Re: Music on/Off (does not stop in IE7) Need Help!

Thank you I will!
Webill is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Go to Stop issue acrikey Flash & Multimedia Forum 1 Dec 1st, 2007 23:48
Stop Cyberbullying pa007 Webforumz Cafe 11 Apr 3rd, 2007 04:47
flash music player that plays music throughtout saxy46 Flash & Multimedia Forum 5 Aug 23rd, 2006 14:24
How to Stop Robots Gee Bee HTML Forum 4 Jan 26th, 2006 18:56



Latest Updates

All Points SEO Security Advisory - CHECK YOUR SITE NOW!

Creative Coding :: February 2008

Webforumz is sponsored by: WESH UK Web Hosting
All times are GMT. The time now is 19:14.

Sleep Study Scoring :: Free Bet :: Website Templates :: Online Betting :: Bookmakers :: Funny Quotes :: Internet Recruitment Software :: Microsoft CRM Experts :: Online Casino :: Decorated Christmas Trees :: Midwife Forums :: Football Betting :: Ecommerce Software :: Web Hosting :: Football Stats :: Dry Cleaning Collection :: xtreme wales - extreme clothing :: Apuestas :: Sharepoint Consultants :: Website Optimisation :: Office Clearance London :: Sharepoint Experts :: Sports Betting :: Casino :: Website Templates :: Web Design Development India :: Online Gambling

Powered by: vBulletin Version 3.7, Copyright ©2000 - 2008, Jelsoft Enterprises Limited.
© 2003-2008 Webforumz.com : All Rights Reserved
Search Engine Friendly URLs by vBSEO 3.2.0 RC6


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59