Javascript for changing image of image tag every 2 seconds

You know google has TONS of examples of how to do this, but here is something i wrote really fast.

setInterval(function() {
	document.getElementById('ImageID').src='imagepath?rd=' + new Date()
}, 2000)
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.