Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function counter(time, url){
- var interval = setInterval(function(){
- $('#waktu').text(time);
- time = time - 1;
- if(time == 0){
- clearInterval(interval);
- window.location = url;
- }
- }, 1000);
- }
- $(document).ready(function(){
- counter(5, 'http://www.saidz.info');
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement