আমি 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
জাভা স্ক্রিপ্টে অন্তর্বর্তী কল বন্ধের
—
মোহাম্মদ