I am in the process of making a jquery application to hide an image after a specified interval of time by using setInterval(). The problem is that the hide image function ex
You have setInterval(change(), 99999999); and it should be setInterval(change, 99999999);. See the documentation of setInterval/setTimeout why. :)
setInterval(change(), 99999999);
setInterval(change, 99999999);
Common mistake, happens to me all the time. :)