Sir,I used $.post
method for fetch user information and in callback function i get:
<img id=$id src='img/user.jpg' width=60; height=60; /> //from fetch.php
when i put this on jquery html()
with 5s Interval :
setInterval(function(){
$.post('php/fetch.php',
{usr:1},
function(info2){
if(info2!='10' && info2 != ''){
$('#regu').html(info2); }); },5000);
then in output, i get the user information but with blinking or flushing image after 5sec because of Interval it loads every time,i just want to remove blinking or flushing of image.Please help me to solve this problem.
see problem : see my problem :(