html5 - How to Set Timer in HTML? -


i want show loading(gif) image 3 seconds , want open website link(say http://example.com), after timer(3 seconds) complete. how set timeout in html?

enter image description here

you can use html redirect

<meta http-equiv="refresh" content="3; url=http://stackoverflow.com/" /> 

the number in content means seconds until page redirected next paramenter, url.


Comments

Popular posts from this blog

How to understand 2 main() functions after using uftrace to profile the C++ program? -

c# - Update a combobox from a presenter (MVP) -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -