My partner wrote a script, but he is currently offline so I am trying to troubleshoot the issue on my own.
Here is the current code we are working with:
function checkProgress(Progress) {
// Retrieve progress status
$.get('http://www.site.com/progress/'+Progress, { }, function (response) {
// Evaluate the response
eval(response);
});
}
On our webpage, we have this:
// Begin checking progress status
var Progress = $('#Progress').val();
checkStatus = setInterval('checkProgress("'+Progress+'")', 1000);
The script works perfectly in Firefox and Chrome, however it seems to continuously update the status in those browsers. In Internet Explorer, it only retrieves the progress status once and then stops updating.
What could be causing this issue? If more code is necessary for analysis, please let me know and I will provide additional details.
Thank you in advance.