I am trying to write a jquery script that disappears in Images when they load using setInterval.
My current code does not work - the "upload image" class is not deleted.
So, two questions: 1) Why is the code not working, and 2) is this the best way to accomplish what I want to do? Is there a better way?
(function($) { var $props = $('#properties'), $imgs = $props.find("img"); $imgs.addClass('image-loading'); (function updateImages() { setTimeout(function() { $imgs.each(function(){ $me = $(this);
source share