<script>
$(document).ready(function()
{
setInterval(doAjaxStuff, 500);
});
function doAjaxStuff()
{
/* $.ajaxSetup ({ cache: false }); */
$.ajax
({
url: "../getStatus/"+id,
dataType: 'json',
success: function(json)
{
if(json.status == "ACTIVE")
{
$('#ajaxStatus').html(jason.status);
}
});
}
</script>
//I get refreshed and cause flickering
<p id= ajaxStatus > Refresh Me</p>
|
|
|||||
|
|
Try to add a check so you only update if the value has changed.
|
|||
|
|
|
there is an easier to use jquery function to load text from a page. You could replace the whole .ajax call with $("#ajaxStatus").load("../getStatus/" + id) Not sure if that stops the flickering but at least should make the program cleaner. |
||||
|
|
|
I had the same problem on using a
In the Found out the new content picks up the parent css and js functions! bottomline: including same css in new loaded div as parent cause blinking because the html elements get styled again. |
||||
|
|
|
I would say 500 is way too fast. You have to remember that the interval will keep going and requesting the info even if the ajax call is not completed. my suggestion is to either change setInterval to setTimeout and reinitialize the timeout on success, or crank up the interval to 1500-2000. You better off with the timeout though |
|||
|
|