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
Change setInterval(change(), 99999999); to setInterval(change, 99999999);
setInterval(change(), 99999999);
setInterval(change, 99999999);
And 99999999 means 99999999 milliseconds as you known.