palyinh audio files not working in IE10

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • omryk78
    New Member
    • Jul 2013
    • 2

    palyinh audio files not working in IE10

    hello every body
    i have this code :
    Code:
    <!DOCTYPE html>
    <html >
        <head>
              
          
           </head>
        <body>
         <script>
             aLoops = [];
             aLoops[0] = new Audio('media/background.ogg');
             aLoops[0].volume = 0.3;
             alert("43434");
             aLoops[0].play();
    
         </script>
    
           
        </body>
    </html>

    it works fine in browsers except IE
    what may be the problem?\
    Last edited by Dormilich; Jul 28 '13, 03:06 PM. Reason: Please use [CODE] [/CODE] tags when posting code.
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    IE10 does not support OGG audio/video without a plugin.

    Comment

    Working...