Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i wonder what i'm doing wrong?

    $('.player_audio').click(function() {
    if ($('.player_audio').paused == false) {
        $('.player_audio').pause();
        alert('music paused');
    } else {
        $('.player_audio').play();
        alert('music playing');
    }
});

i can't seem to start the audio track if i hit the "player_audio" tag.

<div class='thumb audio'><audio class='player_audio' src='$path/$value'></audio></div>

any idea what i'm doing wrong or what i have to do to get it working?

share|improve this question

8 Answers

up vote 17 down vote accepted

Well, I'm not 100% sure, but I don't think jQuery extends/parses those functions and attributes (.paused, .pause(), .play()).

try to access those over the DOM element, like

$('.player_audio').click(function() {
  if (this.paused == false) {
      this.pause();
      alert('music paused');
  } else {
      this.play();
      alert('music playing');
  }
});
share|improve this answer
any idea why a simple mp3 in my audio_player won't work in firefox 3.6?? it just shows a black rectangle. chrome and safari do not have problems at all! – matt Jun 7 '10 at 9:21
2  
As MadBrain pointed out, Firefox doesn't like MP3s. Use Ogg Vorbis instead. Isn't standardization wonderful? – Darren Oster Aug 18 '10 at 10:15
you can use the event variable passed by bind to the function enclosed on your click to get the current target which is a DOMElement function(event){ event.currentTarget.play(); } instead of relying on the keyword this – rroche Jan 30 '12 at 21:20
The audio doesn't pause in Firefox for some reasons. – Jonas T Oct 13 '12 at 5:11

Have to call custom methods trough trigger in jQuery. Just do this:

$('.play').trigger("play");

And the same for stop ;) It works for me so I hope it will be useful.

share|improve this answer
Maybe you know how to externally (e.m. using $('.play')) to check is player play or paused ? – user437797 Jul 25 '12 at 8:58
You can access element its methods and properties by jQuery.get e.g. $('.play').get(0) or $('.play)[0] Then you can use the play() or plause() methods and the paused property to check if the video is paused. $('.play').get(0).paused is boolean - true if it is paused, false if isn't. – Drahomír Hanák Jul 25 '12 at 14:11

I'm not sure why, but I needed to use the old skool document.getElementById();

<audio id="player" src="http://audio.micronemez.com:8000/micronemez-radio.ogg"> </audio>
<a id="button" title="button">play sound</a>

and the JS:

$(document).ready(function() {
  var playing = false;

  $('a#button').click(function() {
      $(this).toggleClass("down");

      if (playing == false) {
          document.getElementById('player').play();
          playing = true;
          $(this).text("stop sound");

      } else {
        document.getElementById('player').pause();
        playing = false;
        $(this).text("restart sound");
      }

  });
});

Check out an example: http://jsfiddle.net/HY9ns/1/

share|improve this answer
1  
Instead of getElementById, you can use jQuery like this: $('#player').get(0).play() or $("#player")[0].play() . – Gan Nov 28 '12 at 6:06

Because Firefox does not support mp3 format. To make this work with Firefox, you should use the ogg format.

share|improve this answer
This should have been a comment to the post in questions, not a separate answer. – Darren Oster Aug 18 '10 at 10:14

I did it inside of a jQuery accordion.

$(function() {
        /*video controls*/
            $("#player_video").click(function() {
              if (this.paused == false) {
                  this.pause();
              }
            });
        /*end video controls*/

        var stop = false;
        $("#accordion h3").click(function(event) {
            if (stop) {
                event.stopImmediatePropagation();
                event.preventDefault();
                stop = false;
            }
            $("#player_video").click();
        });

    });
share|improve this answer

if anyone else has problem with the above mentioned solutions, I ended up just going for the event:

$("#jquery_audioPlayer").jPlayer({
    ready:function () {
        $(this).jPlayer("setMedia", {
            mp3:"media/song.mp3"
        })
        ...
    pause: function () {
      $('#yoursoundcontrol').click(function () {
            $("#jquery_audioPlayer").jPlayer('play');
      })
    },
    play: function () {
    $('#yoursoundcontrol').click(function () {
            $("#jquery_audioPlayer").jPlayer('pause');
    })}
});

works for me.

share|improve this answer

Try using Javascript. Its working for me

Javascript:

var myAudioTag = document.getElementById('audiotag1'); myAudioTag.play();

share|improve this answer
You should consider updating your answer to match the code in the question - the question doesn't mention an element called audioTag1. – Simon McKenzie Apr 12 at 1:38

This thread was quite helpful. The jQuery selector need to be told which of the selected elements the following code applies to. The easiest way is to append a

    [0]

such as

    $(".test")[0].play();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.