hi , i want one code for one of my pages , i want when someone came to my page after 2 sec it'll transfer to another page and after 7 sec came back to the first page and stop ! i mean only one time work each day for one user !
--Site1--- <script> (checkCookie for this is the fist time for this visitor) if (document.referrer!='http://site2.com'){setTimeOut(top.location='http://site2.com',2000);} (createCookie) </script> Code (markup): --Site2--- <script> setTimeOut(top.location='http://site2.com',7000); </script> Code (markup):