Advertisement
rAthus

Fonction "retour" universelle

Mar 6th, 2017
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. retour = function()
  2. {
  3.     if (document.referrer && document.referrer.indexOf('mondomaine.fr')>=0)
  4.     {
  5.         history.go(-1);
  6.         setTimeout(function()
  7.         {
  8.             location.href = document.referrer; 
  9.         },500);
  10.     }
  11.     else
  12.     {
  13.         window.location.href = 'mapage.php';
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement