Logged Out
Create an Account
Login:
Password:

Forgot your password?
Cookie to bypass splash screen

Cookie to bypass splash screen
[Back to Index]
Thread Tags
Primary: [Suggestions]
Secondary: None

Wondering if you can implement a setting for the site that puts a cookie on the user's pc, so that if they've viewed the splash screen within the last couple days, it will automatically redirect to the news.php page?

Maybe there's a way to do this with javascript?

My splash screen is used as a recruitment screen, so regular members don't really need to see it all that often. I realize they can just bookmark the news.php page to bypass it. However, having a way for the site to remember if you've viewed it recently, and then bypass it would be a welcomed feature.


--
Followers of Nobility
You'll definitely want to use the javascript cookie functionality for this.

While some of our templates use javascript cookies, I don't really recommend our scripts, as they're more specific.

The following functions from http://www.quirksmode.org/js/cookies.html should help you out


  1. function createCookie(name,value,days) {  
  2.     if (days) {  
  3.         var date = new Date();  
  4.         date.setTime(date.getTime()+(days*24*60*60*1000));  
  5.         var expires = "; expires="+date.toGMTString();  
  6.     }  
  7.     else var expires = "";  
  8.     document.cookie = name+"="+value+expires+"; path=/";  
  9. }  
  10.   
  11. function readCookie(name) {  
  12.     var nameEQ = name + "=";  
  13.     var ca = document.cookie.split(';');  
  14.     for(var i=0;i < ca.length;i++) {  
  15.         var c = ca[i];  
  16.         while (c.charAt(0)==' ') c = c.substring(1,c.length);  
  17.         if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);  
  18.     }  
  19.     return null;  
  20. }  
  21.   
  22. function eraseCookie(name) {  
  23.     createCookie(name,"",-1);  
  24. }  



Then you can use it by doing something like this at the bottom of your splash page, or in the onload event.

  1. if(readCookie("splash_shown"))  
  2.     document.location="news.php";  
  3. else  
  4.     createCookie("splash_shown",true,365);  


--
It's all in the reflexes.


[Back to Index]