So I have a working version of a pop up that loads 10 seconds after I open a page. I also have a working version that sets a cookie for when the pop up is closed. However, I need to get a little more functionality with this.
Here is what I have now, the code that makes pop up come up 10 seconds after
1.) My first task it to combine the two. I still need the popup that comes up after 10 seconds, but I also need the jquery to check if a cookie is set. (I load the jquery cookie plugin for this code)
2.) If there is no cookie and the pop up comes up there are three ways of closing the pop up.
- x button on the top right corner: if this is clicked, a 24 hour cookie should be set
- remind me later link: if this link is clicked, the same 24 hour cookie should be set
- dont show again: if this one is clicked, a longer cookie is set
I have an embedded system with a web interface. One of the web pages has a small JavaScript program that, when run on IE6, always displays the message that cookies need to be enabled:
if (document.cookie.indexOf('asm_session') == -1) { document.cookie = 'asm_session=0' if (document.cookie.indexOf('asm_session') == -1) { document.write("Advanced System Management access requires cookies to be enabled."+'<br><br>'); } }
This problem only occurs with IE6, not Mozilla. It also only happens on some of the embedded systems, but this problem exists for everyone running IE6.
The problem isn't limited to the Javascript code, either. On another web page from this embedded system, a cookie is set the normal way, via the HTTP header. This cookie is also rejected.
When I display any page that attempts to set a cookie, IE6 displays the blocked icon and says that cookies on that URL are blocked. However, I have set all privacy and cookie options to their most permissive. I've spent the past hour changing every option I can find that's even remotely related to cookies and privacy, and nothing changes. Does anyone have any idea what's going on?
I'm having a slight problem with php pagination and jquery/js. On the following page [URL] you'll see an "athlete profile" area. Whenever an athlete photo is selected, javascript/php are used to switch out the athlete info. This works perfectly fine. The problem occurs if I use the left or right arrows to view more athletes (the left and right arrows are set with php pagination to switch to the next four records in the database). Whenever I do this, the athlete info defaults back to the first person from the initial load. Also, the javascript/jquery quits working and won't let me view the info for one of the newly displayed athletes. So I have two questions:
1) why it defaults back to the original athlete info? I'm assuming it has something to do with me not setting a cookie to remember the currently selected athlete.
2) Why does the javascript quit working when I view the next set of athletes?
Also, the jquery slideshow that I am implementing is an alteration of this: [URL]
i am working on a script that triggers a blind down or blind up effect by clicking on a particular link. it then remembers the status of that choice by setting a cookie. Code:
I am working with the "sexy alert box" found here [URL] and have the code below, which pops up the sexy alert box on every page load.
<script type="text/javascript"> function test() { Sexy.alert('Hello world!'); } window.onload=test; </script>
My problem is that I only want that code to show on the FIRST load for the user and every page after that it should not be showing. This will be the first time I've worked with cookies so I am a bit confused as to what to do with this code and where to edit things.
How I can set a cookie name with the next function: Explanation: if cookie called: "lostpasswd" is present on the web browser of user it can't be access to the page in the next 30 minutes. After 30 minutes the cookie will be destroyer.
I am working with the "sexy alert box" found here and have the code below, which pops up the sexy alert box on every page load.
Code:
<script type="text/javascript"> function test() { Sexy.alert('Hello world!');
[code]...
My problem is that I only want that code to show on the FIRST load for the user and every page after that it should not be showing.This will be the first time I've worked with cookies so I am a bit confused as to what to do with this code and where to edit things.
how to set cookie with some info about that --> is this user voted in pool or not... maybe someone can write a simple script for that if it's not too hard.. it would be very nice.
I would like to set/create a single-use/temporary "cookie" for the duration of the user's session or possibly for up to 2 days and have a popup alert box, telling them that their screen resolution is too low to view. Here is my existing Javascript below.implement and/or rewrite it with the cookie?
Code: <script type="text/javascript"> <!--
if (screen.height<768 || screen.width<1024) alert ("Your screen's resolution is below 1024x768.This site works better at higher resolutions.");
I have searched and searched the internet but cannot find information on exactly what I am trying to do.What I am trying to do is set a cookie that will remember if the display status is "none". This is probably something simple but I don't know much about javascript obviously. I've tried a few different approaches but I can never get the script to actually set a cookie.
I simply want to learn how to create a cookie that is assigned the user’s favorite color. And change the background color of the document to that color. So far I think I may be storing it in the cookie correctly, and I have a function that sets the background color, but I don’t think I am recalling it properly when I reopen the web page. Code:
I have a script that sets a number of cookies based on a set of results returned from an external website.
The file sits in the cgi-bin folder (it has to, as this is where the data is processed and results returned) and when the data is returned it is stored in a number of cookies before redirecting to a results page in the website root to display the data.
The problem, before I display any code, is that one of the cookies is setting its path to the /cgi-bin folder, meaning when the page redirects back to the website this particular cookie is not accessible.
However, what is even more unusual is that this only happens in Safari.
Here is the code:
The specific cookie that is being set to the wrong path is the 'ckResults' cookie.
I'm more of an actionscript person but got roped into an html/javascript job.What I need to do, and it shouldn't be that difficult is this:page1.html - there is a yellow button and a red button - if the user clicks on the yellow button I want to set a cookie with the value "yel" then load the next page - if they click the red button set that cookie with the value "red"page2.html - 'onload' i want to read that cookie and load up the main image to match, something like this maybe?... document.mainimage.src='img/main_' + variable + '.png'so that the path would be for example 'img/main_red.png'f you think this would be easier sending that variable in the URL instead of as a cookie please explain. I'm having a very hard time searching for tutorials that are any good and that do exactly this kind of thing.
I've got the following code snippet in a function to set a coockie based on whether or not the user selects a checkbox. Using an alert the cookie text looks fine but when I go to retrieve the values the only one it can find is the value for user. I've a few different things and none of them seem to work. I'm getting the same thing in both IE and Firefox. The only cookie listed is the 'user' with the proper expiration date. Code:
Now I am having problem the remove attributes are written on base of .change if I load the cookie at first then typeo option's disable attribute not getting removed. how can I use remove disable attributes and load cookies?
I have code that lets the user click on a link. When he does that, it calls the .Load function. This loads some HTML (a div and some contents) into a tag. Then it tries to color the left border of the DIV that it loaded. Now the interesting thing is that it does succeed to color that border very briefly - but immediately the color is covered up with black, which is the original color.
I have cpa gateway on a site that when the customer completes a function of the gateway.The external js of the gateway sends a command to the website to reload the site.Is there any way I can have some sort of event listener to know if that command is sent or not? The problem I'm having is its causing a loop in my existing JS.So it keeps looping the page. I would like to be able to set a cookie when the command is sent and then just have the cpa gateway not load.
I'm not very good with Javascript so I need you help for page on my website. Basically what I need to do is to make a DIV shown only first time someone visits page, and then when he/she revisit it I want that same DIV hidden, and I want it hidden for next 24 hours... so in that way DIV would be shown only once a day, and only on first page load.
So to make that happen I need to do fallowing, and I would need your help for that: I need a script that on a page load checks if cookie (which is 24h cookie) is set, if it is then it should hide that DIV, if it is not set then it should set it, so that DIV would be hidden on next page load..
I'm searching for a pre-made cookie script or a tutorial on making a simple session cookie. Just a cookie to make sure users are getting most current copies of HTML pages on my site.
Up till now I've just had messages on each page instructing them to refresh to make sure the have the latest version.
I would like to set the postcode <?php echo $pubdetails['rsPostCode]; ?> as a default value in the form field so that the map area loads up automatically for instance the link above uses postcode bn11 3rg
I have an embedded video set in an iFrame (the page is called on.php). When someone clicks the stop video button, the iframe is re-directed to off.php, and the video is replaced with a play video button -- which when clicked takes them back to the video (on.php).
What I want to do is install a cookie that will permanently 'remember' which page the user has selected (on.php or off.php)... and then from that point forward will always load the appropriate page.
I've seen all sorts of tutorials about setting cookies and stuff, but nothing that would clue me in on how to accomplish what I'm trying to do specifically.