ok i am looking for a plugin for my website …
i am using a intro as flash… but its gets annoying when people want to go to the site the need to go first to the intro..
is there a script that checks the ip or whatever …. that if they script sees that you already visited it once that it wil skip it and bring that person to the main page ?
kind regards Cookie
- United States
- Has been a member for 4-5 years
- Exclusive Author
- Author was Featured
- Sold between 50 000 and 100 000 dollars
- Item was Featured
- Contributed a Tutorial to a Tuts+ Site
- Author had a Free File of the Month
Ironically, you can use a cookie for this
. There are a few jQuery plugins that make setting and retrieving a cookie easy. It’s a simple task so I don’t think you’ll find it for sale here, but search Google for “jQuery cookie” for some examples.
cookiemonster1988 said
... is there a script that checks the ip or whatever …. that if they script sees that you already visited it once that it wil skip it and bring that person to the main page ?kind regards Cookie
Seems you’ve already know the answer 
woah lol but still confused what do i need to look for never did it before 
<script type="text/JavaScript">
if (readCookie("website_visited") == "yes"){
window.location = "after intro page URL";
}
else{
setCookie("website_visited", "yes", 7);
}
function setCookie(c_name, value, expiredays){
var exdate = new Date();
exdate.setDate(exdate.getDate()+expiredays);
document.cookie = c_name+"="+escape(value)+((expiredays==null) ? "" : ";expires="+exdate.toUTCString());
}
function readCookie(name){
var nameEQ = name + "=",
ca = document.cookie.split(";");
for(var i=0;i < ca.length;i++){
var c = ca[i];
while (c.charAt(0)==" ") c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
</script>
I haven’t tested the code but you shouldn’t have any problems.
MariusCristianDonea said
You can add try code (add it in <head>):<script type="text/JavaScript"> if (readCookie("website_visited") == "yes"){ window.location = "after intro page URL"; } else{ setCookie("website_visited", "yes", 7); } function setCookie(c_name, value, expiredays){ var exdate = new Date(); exdate.setDate(exdate.getDate()+expiredays); document.cookie = c_name+"="+escape(value)+((expiredays==null) ? "" : ";expires="+exdate.toUTCString()); } function readCookie(name){ var nameEQ = name + "=", ca = document.cookie.split(";"); for(var i=0;i < ca.length;i++){ var c = ca[i]; while (c.charAt(0)==" ") c = c.substring(1,c.length); if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length); } return null; } </script>I haven’t tested the code but you shouldn’t have any problems.
Thank you so much… it works fine.. i even implemented the mobile detect script too ^^ small question i noticed it only last or a day how do i edit this?
Set cookie.
http://php.about.com/od/phpfunctions/g/cookie_params.htmThe snippet above is set to 7 days , we use microtime
cookiemonster1988 said
Thank you so much… it works fine.. i even implemented the mobile detect script too ^^ small question i noticed it only last or a day how do i edit this?
I don’t understand your question.
SportTipsWorld said
Set cookie. http://php.about.com/od/phpfunctions/g/cookie_params.htm The snippet above is set to 7 days , we use microtime
My code is for JavaScript.
No shit sherlock
