Advertisement
Guest User

Untitled

a guest
Feb 2nd, 2013
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. $(document).ready(function() {
  2.  
  3. $("body").css("display", "none");
  4. $("body").fadeIn(2222);
  5.  
  6. $(document).keypress(function(e) {
  7. if(e.which == 13) {
  8. event.preventDefault();
  9. linkLocation = 'https://ournewlife.com/001/protected.php';
  10. $("body").fadeOut(2222, redirectPage);
  11. }
  12. });
  13.  
  14.  
  15. function redirectPage() {
  16. window.location = linkLocation;
  17. }
  18.  
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement