jquery - How do you completely unload a swf (sounds and all) using javascript? -


so, have web page uses javascript let user select different audio files listen (using player: http://www.macloo.com/examples/audio_player/) works great in every browser except version of ie. after audio starts playing can't figure out programmatic way make audio stop playing after user clicks on item listen to. don't have access source of swf i'm trying use javascript this. went far replace entire body of page - $("body").html("blank") - still played audio loaded swf in it's entirety.

is there way can remove swf page (sound , all) using javascript?

you try

location.href = location.href; 

that reload page.


Comments

Popular posts from this blog

List<T>().Add problem C# -

Javascript natural sort array/object and maintain index association -