I am using following JavaScript code for play audio after complete ajax:
$(document).ready(function () {
$.ajaxSetup(
{
cache: false,
complete: function () {
$('#loading').hide();
$('#page_content').show();
//get gold price and compire timestamp
var published_date = $("#goldprice").data("published");
var currend_date = Math.floor(Date.now() / 1000);
var compare_date = currend_date-published_date;
if( compare_date <= 10){
document.getElementById('ding').play();
}
}
});
setInterval(function () {
$("#page_content").load('index-content.php')
}, 5000);
});
Audio tag:
<audio id="ding" src="assets/audio/ding.mp3" preload="auto"></audio>
It works well on the local host. But it does not work online. I've checked the permissions as follows:
Folders:
Audio file:
How to fix this problem?
If get 403 error in
index-content.php
request, then it is because you do not set the correct permissions for this file.Set
777
(only a example) forindex-content.php
, eg.:Go to your project folder
Set needed permission
Check the setup of your server or installed modules, such as
modSecurity
.