problem with hiding "dr player" in Mozilla
Hello,
I am making a web page using "dr player" plug in. I am trying to hide the playlist without stopping the music. I have tried the following script:
- $(document).ready(function() {
- $('#menu_blog').click(function(){
- $('#blog').show();
- $('#playlist').hide();
- }); return false;
- });
which hides the playlist, but stops the music, in Mozilla, Chrome, and IE
The following script works well in Chrome and IE - it hides the playlist and the music keeps on going, and I can use the controls wich are separated in another div-tag:
- $(document).ready(function() {
- $('#menu_blog').click(function(){
- $('#blog').show();
- $("#playlist").css({"position":"absolute", "left":"-1000px"});
- }); return false;
- });
Is there any way to make it work as well in Mozilla?