Guest User

Untitled

a guest
Dec 14th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. jQuery(document).ready(function(){
  2. // You animate your element
  3. jQuery('#your-element').addClass('animate');
  4. setTimeout(function(){
  5. window.location = 'http://www.your-new-url.com';
  6. }, 2000); // You let 2 seconds of animation and then you redirect the user.
  7. });
Add Comment
Please, Sign In to add comment