You can make this with jquey or ajax.
Hope that below link will help you
http://www.webinfopedia.com/autoload-re ... query.html
Thank You
Change Images Over time
Moderators: egami, macek, gesf
- webinfopedia
- New php-forum User
- Posts: 84
- Joined: Sat May 21, 2011 10:26 pm
- Contact:
here is a very minimalist javascript solution :
with this you can trigger anything after time_to_wait
Code: Select all
var time_to_wait=1250; //milliseconds
setTimeout("alert('hello world!!')",time_to_wait);
with this you can trigger anything after time_to_wait