Tagged Questions
1
vote
0answers
268 views
Why doesn't Firefox have a volume slider for the audio element? [closed]
Seems like most browsers have a slider to control the volume of audio files played via the <audio> tag, yet Firefox on Windows (and Linux) seems to only have an 'all on' or 'all off' volume ...
1
vote
2answers
2k views
Using <audio> in Firefox with JavaScript
I am trying to implement background music on a website using the audio object, which is controlled by a JavaScript, I have posted a question about this before, @LazyOne explained that IIS will not ...
2
votes
1answer
2k views
JavaScript control of <audio> not working in Firefox, works in Chrome
<audio id="audioMusic" loop="loop">
<source src="/Music/behind_you.ogg" type="audio/ogg" />
<source src="/Music/behind_you.mp3" type="audio/mp3" />
</audio>
<script ...
3
votes
2answers
2k views
Why doesn't autofocus=“autofocus” work in Mozilla Firefox?
<INPUT TYPE=TEXT NAME="Gw" MAXLENGTH="225" size="42" autofocus="autofocus">
If I try this with Google Chrome it works. I just want to highlight a form without <script>.
Why doesn't it ...