i wonder what i\'m doing wrong?
$(\'.player_audio\').click(function() { if ($(\'.player_audio\').paused == false) { $(\'.player_audio\').paus
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();