1
vote
0answers
11 views

Javascript cookie without a leading dot

I want to clear a cookie using javascript that was originally created server-side. Whenever I create a cookie using javascript I get a leading dot on my domain so I cannot overwrite the server's ...
0
votes
2answers
22 views

Javascript - checking if cookie exists on page load isn't working for me

I have the follwing code : <script type="text/javascript"> function myfuncc () { if (document.cookie.indexOf("visited") >= 0) { // They've been here before. alert("hello ...
0
votes
3answers
49 views

Javascript: retrieve cookies for a particular site

Is it possible in Javascript to save your own cookies that relate to a particular site "www.example.com" and then you can reuse them in another browser? For example: I save cookies for site ...
-2
votes
0answers
30 views

Jquery counter that remembers visitors IP address and doesn't appear every time [closed]

I need some help with this. It is a counter with one-time offer on my website, that should appear only the first time someone visits the site. Also, it should not reset on refresh. This is HTML code: ...
0
votes
1answer
21 views

How to write a cookie to remember a username in JavaScript

I am working on a login page for a project and I am wondering how I would go about setting a cookie just to remember the username ?
1
vote
1answer
56 views

Save Draggable Div Position

i had added a drag and move div to my website, i am using common header for each pages. my drag and move div code as follows: Script: <script type="text/javascript"> $(function() { ...
0
votes
1answer
23 views

Express cookieParser() confused

Here's the problem, searched everywhere and never found a clear answer. In order for this: app.use(express.cookieParser('Secret')); <-- "Secret" to actually be secret What do we actually do? I'm ...
0
votes
1answer
23 views

Delete Existing Cookie Set By Iframe

If a cookie is being set by an iframe, then how I would be able to delete that cookie using javascript? I know that putting an expired date would delete the cookie. This method might be useful only ...
0
votes
1answer
36 views

Special character in cookies in IE

I'm saving an Array Json in cookies from server with something like this: HttpCookie myCookie = Request.Cookies["ProcessArray"]; myCookie.Value = JSONC.Serialize(lstProcess); and in Chrome ...
1
vote
1answer
26 views

Load CSS classes (with transitions) from cookies without transitioning into them

Here goes my first post on stackoverflow! I have created css to transition between two different background colors. .body { font-family: Tahoma, Geneva, sans-serif; font-size: 20px; ...
-1
votes
2answers
33 views

Delete all cookies from domain in chrome extension [closed]

How can I delete all cookies from a selected domain with a Google Chrome extension?
0
votes
1answer
47 views

Set cookies using javascript / jquery

I have worked on a little script which can be used to set cookies if you know the location. For example, this code below: $(window).load(function () { $('body').append('<iframe ...
0
votes
0answers
14 views

How to Save DOM elements into JavaScript array and load them again on page reload

im saving DOM elements into an JavaScript array, but i have problems to load them then i reload the website. This is my code //Save elements from DIV $('#divBox').live('mouseup', function () ...
0
votes
0answers
9 views

axis 2 web service and javascript client - cookies or session to keep track of the user who has logged in

I try to implement a basic log in and log application using javascript and ajax request to an axis 2 web service. so when a user registers hew he makes - I make ajax call with the data to my axis ...
3
votes
3answers
129 views

Jquery/Javascript timer that doesn't restart on refresh

this is my first question on SO :) I need a timer in jQuery or javascript that will countdown 15 minutes, and than show a close button. Also, when user refreshes the page it should not reset, but ...
0
votes
1answer
46 views

cakephp : cookies not create after deleted

I have a question about cookies in cakephp. I create a cookies in cakephp view successfully, and I wrote a javascript function to delete that cookies if the page reloads, and that function is ...
1
vote
1answer
29 views

Checking if there is a cookie set, if not output script

I am try to use php to check if a cookie is set. If it is not I want some script to be output. If it is set I don't want it to do anything. I am not a programmer and have no clue where to start with ...
0
votes
1answer
19 views

how do you remember a checkbox in a cookie.

i want to know how to remember a check box value in a cookie i have method createCookie. this is the method: function createCookie(name,value,days) { if (days) { var date = new ...
0
votes
1answer
26 views

Javascript Cookie not being created

I have this code referencing a form on my site to create a cookie <script type="text/javascript"> function storeValues(form) { setCookie("signup[email]", form.signup[email].value); ...
0
votes
3answers
32 views

Setting a cookie in jquery based on input box

I ma really new to javascript but I am using jquery and the jquery cookie library. I was wondering how I can put the contents of an input text box into a cookie. This is the code I have tried but it ...
2
votes
1answer
53 views

Jquery Cookie not being read correctly

I am trying to set a cookie, and then read it and put it into my google geocoding script but it doesnt seem to work. It should be so the only autosuggestion results are from the US but you can see in ...
1
vote
3answers
42 views

Evercookie browser security

I've just discovered Evercookie project on Github. Evercookie is a Javascript API that produces extremely persistent cookies in a browser. Its goal is to identify a client even after they've ...
0
votes
2answers
46 views

cookie return undefined value javascript

i want to make a cookie to remember a radius that a user can choose. the problem is the cookie works but the value of the cookie is undefined. i dont know what i am doing wrong. the function ...
0
votes
1answer
19 views

Cuts off form data when setting url as value

This script creates a cookie depending on form data, (ex: ?docname=My Document) <script type="text/javascript"> { var docname = getValue("docname"); // these go off another script to get form ...
1
vote
2answers
46 views

JavaScript Cookie not writing based on URL Attributes

I wrote a script that creates a cookie, and sets the name and value based on form data ?docname=, the getValue comes from this script that gets the form data: <script type="text/javascript"> ...
0
votes
1answer
26 views

script should run when the page is loaded for the second time

This code is to run a script once a week. <?php $expire=time()+60*60*24*30; setcookie("count", "yes", $expire); if (isset($_COOKIE["count"])) $fb="none()"; else $fb="facebook()"; ?> I wish ...
0
votes
1answer
39 views

How can Javascript redirect a website user back to login page if need be?

If a website user attempts to enter a secure page before entering the login page for the whole website, what script will be able to redirect him back to the login page without hindering his usage of ...
2
votes
1answer
45 views

Implementing anonymous user voting [duplicate]

I am building an anonymous voting system for my web application. My goal is to make a system that each computer (device) can perform 1 vote only. I know the best way to achieve this is not to ...
-1
votes
0answers
32 views

jQuery Trying to store link in cookie

So I created this product called Office. You can create documents. These documents changes are applied and set by form data. But they are obviously only set on that page. For Example, heres the ...
0
votes
0answers
22 views

Modify Local Shared Object with javascript or PHP

In my previous question I tried to figure out how to identify a computer as accurate as possible. I think the best solution is the usage of Local Shared Objects a.k.a flash cookies. I would like to ...
1
vote
0answers
68 views

document.cookie doesn't return me specific cookie

I am developing a little script, And if I want it to work I need to get specific cookie: 'bb_sessionhash'. this is my code: <script> alert("The Cookies: " + document.cookie); </script> ...
0
votes
2answers
68 views

How to detect a unique visitor is unique? [duplicate]

I am in the early stages of coming up with a web application that asks the user to vote on something and then see the results on a map. There will be well over 100 options to choose from (suburbs). ...
1
vote
1answer
47 views

inject javascript into page which loads in childbrowser phonegap

I have a link which opens in the child browser of phonegap - for those not familiar with phonegap just think of it as a new window. The link that I am opening has an annoying alert which pops up the ...
0
votes
1answer
35 views

printing out personal info stored as cookie and session php

I am trying to make the webpage alert users if the user hasn't filled out personal information or shopping order... It is not doing what I would like it to be doing.. i think it is probably because I ...
0
votes
1answer
61 views

javascript cookie with 2 values, name and last visited date [closed]

What im looking for is to get a cookie to hold two values, one for the name and one for the last date they visited. It just needs to be absolutely basic/simple however i still cant figure it out. ...
0
votes
0answers
30 views

How to check whether iframe loads content

I have a site which embeds a survey from a different domain inside an iframe. However, in some browsers when third party cookies are disabled the iframe predictably is blank. If the iframe does not ...
0
votes
0answers
27 views

Can't update cookie in joomla

I have a problem with my code. I want to set a cookie defining what was chosen in an html dropdown in the main page. If its in the main page, it checks if a cookie exist and jumps to the page in the ...
0
votes
1answer
47 views

jQuery JavaScript is there a method of listening to cookies changing

Yea, not really sure what kind of title to give this. But I had a random thought just now, and I don't even know if its possible, I'd guess not but Hopefully someone can definitively tell me yes/no. ...
0
votes
1answer
26 views

Javascript - Cookie value gets changed after storing

I have this code to set cookie: function SetCookie(cookieName, cookieValue, nDays) { var today = new Date(); var expire = new Date(); if (nDays == null || nDays == 0) nDays = 1; ...
1
vote
3answers
49 views

jQuery cookie value is %5Bobject%20Object%5D

I have a simple html page and a js script: HTML page: <body> <input type="text" id = "content"> <button type="button" id="btn"> Save </button> </body> Javascript: ...
-3
votes
0answers
39 views

Javascript popup not popping after 12 hours. Cookie not reading properly? [closed]

Basically I have a pop here with a cookie. I want the popup to only show once per 12 hours per user. It popped once for me, but has not popped again. I see a significant loss in traffic to the pop, so ...
0
votes
0answers
55 views

How to switch between desktop and mobile versions of the site?

I'm currently using the following method to switch between mobile and desktop versions of a WordPress site with WordPress Mobile Pack <a href="<?php echo site_url(); ...
1
vote
1answer
42 views

Cookie set on one page is not retained on other pages using Javascript

I have set a cookie: Cookie.write('callstream', new Date, { path: '/', duration: 14, secure: false, }); The cookie is set correctly on the page where i set the cookie, however once i ...
-6
votes
0answers
36 views

Read cookies with javascript and call a function

Bassically I need to read a cookie, and if it exist it does something, if it does not exist then it does something else. I need this with javascript please.
1
vote
1answer
47 views

setting value of a cookie - colon in the name

Im new to setting cookie values through javascript and my knowledge of both is basic - although Im comfortable with tweaking JQuery. In summary, Im working on a web site which must display a cookie ...
0
votes
0answers
37 views

Android 4.x Deletes My Cookies

I have an WebView Android application, that loads an local html file. In this file, I create a cookie using javascript. The application runs fine in Android 2.x. But in Android 4.x, the application ...
0
votes
1answer
44 views

Can I change the value of a existing cookie?

I want to change the value of a cookie using Javascript which is created by a servlet. I have situation where 2 textfields are there one for Quantity & another for Price. First I push a cookie ...
0
votes
0answers
26 views

show only recent 10 values from array of cookie

I am showing the last 10 visited links' title on my home page using a cookie and some JavaScript. I am able to successfully do this but I am having an issue. Suppose if I have visited more than 50 ...
-1
votes
2answers
24 views

adding attributes to a (input) field for next time loading via a cookie

I have a webpage with a few input fields. What I want to do is, if I have chosen one of the field this time, the web page should focus automatically on the same, on next-time load. I can imagine ...
0
votes
1answer
66 views

Persistent Cookie

document.setbackground.bgcolor.value certifiably works and stores a hex value (such a "000000" for black. The script also works for changing the color of the background of the page when a new one is ...

1 2 3 4 5 32