मैं error
हैंडलर में इस अंतराल को बार-बार चलाने से रोकना चाहता हूं । क्या यह संभव है, और यदि हां, तो कैसे?
// example code
$(document).on('ready',function(){
setInterval(updateDiv,3000);
});
function updateDiv(){
$.ajax({
url: 'getContent.php',
success: function(data){
$('.square').html(data);
},
error: function(){
$.playSound('oneday.wav');
$('.square').html('<span style="color:red">Connection problems</span>');
// I want to stop it here
}
});
}
2
जावास्क्रिप्ट में स्टॉप सेटइंटरवल कॉल
—
मोहम्मद