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.toGMTString());
}
Above is the code I'm using. I just copy/pasted it from another website, so I don't know how to change it. I want the expiration to be about 10 minutes. I tried decimals (0.007 day), but it doesn't work.
I have this code (which I did not make) which basically makes a container with an X, so when I press the X, the div container closes. However, when you refresh the page, the div container will reappear again. How can I make it so when the person presses the X button, the person will never see the div container ever again (or for a set amount of time like 30 days) on that page?
I want to take it one step further, if possible, and make it so when the person presses the X button, he/she will never see the div container again throughout my site, as I plan on implementing the same div container throughout my site.
HTML Code: <div id="bottom_ad"> <div id="close_ad" onclick="close_bottom_ad();">X</div> <!-- Ad Content --> [Code]......
which lasts for 1 day, but I would like the cookie to not expire for a long time, is this possible? I know google has one that like expires in 2035 or something but I would like this on to last long. What should I do?
I have a page which I have protected using a password page. When the person viewing the site clicks on the link to the protected page, I have placed a script on onload that checks whether a cookie exists. If the cookie doesn't exist then the person is redirected to the password page. If they enter the correct password then the cookie is created using the following code and they are allowed to enter the protected page:
document.cookie="true";
If the cookie exists however, then they are allowed straight into the protected page. This is the code that I use to check whether or not the cookie exists: Code:
I have a script (provided by someone else). The problem is the result is not the desired one. Example: I'm getting my hours and minutes in a decimal format. 8:33 is showing as 8.55
I have 3 fields.
I'm no expert and don't understand JavaScript at all.
I am developing a web site for a summer comedy series. The site has links to buy tickets but I want them to disappear two hours before the show begins. Does anyone know how to use a simple javascript that shows and hides text and links after a date has passed?
I wrote a pair of functions to enable scoped or referenced setTimeout calls. I did this because I have an object factory that creates multiple objects and those objects need to delay a few calls on themselves at a certain point in time.
This code works fine for normal objects. However, my issue occurs if at any point, an event object is passed across in IE.
It seems, that events methods and variables in IE are PRIVATE (!) after the initial callstack has been finished.
The following is the code required to view this bug(?) in IE, and success in FF. Code:
Can I make a list of hyperlinks that users can customize and save as a cookie by clicking a button and automatically retrieve the cookie so it remembers their list next time? This is kind of what I want to do:
I run a streaming site and would like google adsense to appear at the bottom of the page/stream every 3 minutes, stay for 15 seconds and then close automatically. Then after another 3 minutes they'd appear again, stay for 15 seconds and then close again, etc, etc.I'd imagine having the adsense in an iframe would be easier.I'd also like to give users the option to close the adsense using a close button at the top of the iframe if they don't want to wait 15 seconds.
I have a consecutive countdown currently using only seconds. I would like the output to show hours minutes and seconds (ex 2:30:00). The page is at riccraig.us/countdown.html. Here is some of the code:
Code:
var a=900; var b=600; var c=1200;
[code]....
Countdowns 3 through 6 are the same as 1 and 2. The initial html shows the desierd values. But when the timer starts it only shows the total seconds. I realize why it is showing the total number of seconds. However, I don't know how to get it to the 00:00:00 format.
I am making a sort of text based game (Just a hobby) I like to do that sort of thing. So, anyway, considering all I can really do is code HTML, and very, very light javascript, I kinda need some help.
I basicly know how to do everything except affect & Use the cookies. So what I need to do with them is to
#1.) Have a code to change the cookie number, say... on the click of a button.
#2.) Have a code where it only displays certain text if the cookie is a certain number.
I cant code JS and have no idea how hard/easy this is.
If it is insanely hard & needs a master coder, just tell me and ill take it off. I dont want to be wasting anyones time.
I have a javascript script that counts down 10 minutes and displays it in the top corner. On the 10 minute time limit there is an event that directs the person to a page which logs them off.I am trying to create a 1 minute warning pop up alert window which I can get to work but the alert window itself halts the 10 minute countdown execution. Is there any ideas of getting the alert to sit outside of the execution of hte countdown. The script looks like this
Code: // Take user here after session timed out timedouturl = "index.php?doLogout=true";[code]......
I am creating a JS function that takes a time input in minutes only and divides that number by an inputted digit. I would like to know how we use Javascript to convert that result into minutes and seconds.For instance, 30 (1800 seconds) divided by 4 = 450 seconds. How do I show that as 7:30? I can divide by 60 to get 7.5, but I don't know how to go from there. I got as far as the following, then got stuck.
I've been having problems with web browsing that I think may be related to Javascript.I use forum sites like and there I get logged out every few minutes/seconds I've found that clearing my cache regularly seems to help a little, but it doesn't fix the problem. Other forum/avatar sites like Solia and Zaffcast don't work properly either, Solia was the site that first alerted me that my javascript may not be enabled. Since then, I have seen other sites that also require javascript that say that my Javascript is not enabled.I'm using Firefox, and my Javascript is certainly enabled in tools> options> content. I'm also having the same problems in IE, Opera and Safari (I haven't tried Chrome yet).I've done some javascript tests and it is working, but evidently not properly.There is another thing that confuses me, it's the fact that if I use my phone as a modem, I don't have this problem. So could it have something to do with my internet connection?
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?
In my web application we are able to store large data in the browser cookie keeping in mind the limit of 300 cookies per cookie file, 20 keys per cookie per domain and 4KB max size of each cookie. We are unable to retreive this large amount of data immediately after storing through document.cookie in IE browser (The same works fine in Netscape).
Is there any limit on the size of the data that can be retreived using document.cookie in IE browser? Could you please suggest a solution to this problem I am facing.
I have to get the hours, minutes and seconds between 2 timestamps. It´s for a reminder, so I get in a click the actual time. The time until the job is finish is 30 minutes.
var d = new Date(); var stunden_aktuell = d.getHours(); var minuten_aktuell = d.getMinutes(); var sekunden_aktuell = d.getSeconds();
[Code].....
Do you know how to get the hours, minutes and secons between this stamps?
I've been trying to set 15 minutes as a valid range in the awesome simile timeline, I have just followed their own instructions: [URL] but even when following the step by step indications I found that the code in the instructions have changed compared with the code you can download now: [URL] Have anybody already done this? Any working examples? I have been trying but the instructions seem to be writed for an older versi�n of the timeline and I have failed in any attempt to adapt it to new code.
I have created a PDF time sheet for work that automatically calculates the hours worked utilizing the below script:
topmostSubform.Page1.worked[0]::calculate - (FormCalc, client) var amTime = 0 if (HasValue(amOut) and HasValue(amIn)) then amTime = Time2Num(amOut.formattedValue, "h:MM A") - Time2Num(amIn.formattedValue, "h:MM A")- 1800000 endif // compute total time in hours from the millisecond value $.rawValue = Sum(amTime)/3600000
I discovered a problem; if the employee works less than 8 hours they may not take a lunch. I have it set to automatically subtract 30 minutes for lunch. How do I write it to only subtract 30 minutes if the work day is greater than 4 hours? I am new to java script and have NEVER programmed anything previously. I am working in Adobe LiveCycle Designer and what I have done so far was gleaned by reading the internet. So please, if you reply break it down Barney style.
I have developed a application in jsp. I need to achieve a count down timer(days,hours,minutes,seconds) between from date to todate, considering below cases. All below are assumed
(1) I have 4 product, for each product i have different end date stored in mysql in DB.
(2) I need to calculate time time remaining for the end date for each product, for eg;
Product 1 end date : 10/05/2010 (i need to show the time remaining for the end of 10/05/2010 from current time and date). Like wise i need to show for different products.