setInterval(function() { (++fadeCounter) }, 2000); setInterval(function() { (--fadeCounter) },2000); if (fadeCounter = (1)) { $("Image").fadeIn("slow") ; } if (fadeCounter = (0)){ $("#Image").fadeOut("slow") ; }
Jump To Top of Thread