I have a basic ajax request and now it is set to 3 seconds. will be higher, but I want to fix the problem that happens every time a request occurs. for some reason, every image (stored in the database - not so many thumbnails), they all blink.
Is there a way to blink images in a get request?
$(document).ready(function(){ var ajaxDelay = 3000; setInterval(function(){ $('#timedContainer').load('jquery_timed.php'); }, ajaxDelay); });
source share