I'm trying to play a sound in html.
I putted audio
tag in html and define a function to play
it
but when I use the .play()
function of js, the jquery return an error.
audio.play() is not a function.
when I remove jquery file, the sound is working.
how can I clear that the function is not jquery's?
function playblop()
{
var ab = document.getElementById('blop').play();
}