0
votes
1answer
29 views

PHP multiple cookies not working on iPad / iPhone browser

So my application is an iframe based ecommerce cart; cart session is stored on the accessing domain. When a user checks out the iframe deploys a pop up login to our SAAS (which clears our domain for ...
0
votes
1answer
21 views

Want to use the same Javascript (popup) session cookie twice, what values do I change?

I have a .swf that we have pop up once per visit on the home page for a few seconds and then disappears. For that I use <script type="text/javascript"> function popUp(url) { a bunch ...
1
vote
0answers
14 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
0answers
16 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
11 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 ...
1
vote
0answers
77 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> ...
1
vote
0answers
61 views

JavaScript cookie issue in Chrome

I have been giving this code to implement on a number of different websites, however there is an issue in google chrome where the toolbar appears and disappears within 300 milliseconds (time set in ...
0
votes
1answer
158 views

JavaScript session cookies - remove when tab is closed?

My widget relies on a unique session cookie being set that identifies each visitor. Currently i am setting a cookie which is deleted when the user closes the browser, however.. If the user closes the ...
0
votes
1answer
29 views

Navigating across multiple presentations - Can it be implemented using javascript?

I have two presentations: Presentation A & B I started with Presentation A, went till slide 3 and navigated to Presentation B, went through some of the slides and returned back to ...
0
votes
1answer
142 views

Set Cookie in Javascript then window.location.href doesn't send updated coookie

I'm setting a cookie using jquery.cookie. I can verify after setting that it's available in javascript with $.cookie("somecookie"). However when I do a window.location.href = "/somerelativeurl" the ...
-1
votes
1answer
54 views

Create an 'Add to Shortlist' feature in Django [closed]

I'm trying to create an 'Add to Shortlist' feature to my Django website, which lists many products, each having an add to shortlist button. When the user (whether signed up or guest user) clicks this ...
0
votes
1answer
36 views

js object with logged in state vs just server-side session

Is it common to have a js object with duplicate data from the server's session? For example, if a user is logged in, I store this server side in my $_SESSION. But when I'm in the client, I can't ...
0
votes
1answer
440 views

Keep Session Across Page Reload In Backbone JS

I am consuming an API which returns no cookie on login,but only an auth_token as part of json response. The base URL delivers the backbonejs application. say http://xxx.com/ and by default login page ...
0
votes
2answers
42 views

Website redirect based query with cookie

I have a website that used to be only a news page, but as we grown, I had to move the news section from homepage to domainname.com/news To not confuse our loyal users when they landing on the new ...
1
vote
3answers
223 views

how to delete particular cookie from cookies using jQuery

This is code which shows URL and delete image for delete cookie. add and display function is working but how to delete ?? function backLinks(){ var pathname = window.location; var ...
0
votes
3answers
61 views

Is it possible to use the value of a variable to define the name of another variable in a JavaScript string?

I'm trying to use the value of a variable as the name of another variable inside of a string. I've searched, and seen similar questions asked, and the answer seems to be "learn how to use arrays, ...
0
votes
1answer
161 views

Javascript session cookie not writing in IE9

Hi there Stack Overflow users. I have created a nice little script to append A/B testing information from their API to one of our session cookies to be stored in our database. This script is working ...
1
vote
2answers
119 views

Javascript cookies and redirect

I need help changing this code so that the cookie only last through the session instead of 1 year forward. What changes do I need to make? function createCookie(name,value,) { if (days) { ...
2
votes
1answer
1k views

Can't delete cookie with AngularJS's $cookies

My web app is made so that when a user logs in the server adds a Set-Cookie header to the response, like this: Set-Cookie:JSESSIONID=1; Path=/myApp/; Secure On logout I try to delete this cookie on ...
0
votes
0answers
63 views

Using javascript instead of browser's built-in cookie/server communication

In my webservice, we have a "POST /sessions" request, sent with username and password, to identify the user to the webservice. The response is a key which should be sent with every subsequent request, ...
2
votes
1answer
387 views

Javascript delete cookie on browser close even if it's set up to restore cookies on startup

i have a nagging issue, which is all over the internet but i couldn't find a specific solution to my problem. Here it is: In Chrome, you have the option to "Continue where i left off" on browser ...
-6
votes
2answers
192 views

How to detect a returning visitor, and redirect to a specific URL? [closed]

I am developing a new website that needs the ability to detect if the user has visited the website previously, then direct them to a specific URL (i.e. example.com/welcomeback.html) if they have. I ...
0
votes
1answer
307 views

Need Cookies value on client side with Httponly attribute true

We are setting the parameter httpOnly true in web.xml file to prevent the cookie creation at client side. This is causing the reading the cookies values .we are using the following way to read the ...
1
vote
2answers
92 views

Using session cookies to make a form's comfirmation page URL unshareable

I have a form called form.html that follows through to comformation.html when a user submits it. However, I don't want the user to be able to grab the comfirmation.html page URL and share it (eg. ...
7
votes
1answer
316 views

Maintaining Facebook User ID in Session

I'm trying to add facebook login to my site. I've authenticated with facebook JavaScript SDK and created a cookie with user id. The problem is that when user logs out (I'm destroying all cookies) and ...
-5
votes
1answer
139 views

how to get cookies from web browser using jquery

I need to get cookies from web browser using jquery means all the cookies from browser which is not generated by my current script/page/domain because i need to access cookies that generated by other ...
0
votes
0answers
156 views

lightbox only load upon first entering the site

OK, so I have a single image presented using a lightbox. What I want to do now is make that lightbox appear when I first enter a specific page but I want to show it once during that session, not each ...
0
votes
1answer
93 views

Storing information in cookies, and cookie manipulation of some other domain

We have a public facing website, in which the user can login using an email address. After the user logs in, we populate the cookies of that domain with a uniquely generated session id, and the user ...
-1
votes
1answer
2k views

writing and reading session cookies in javascript [closed]

OK, I think my previous question is unanswerable so maybe this method will work. However a total newbie with cookies. Browser will allways be I.E. (Win XP) - company policy. (no other browser will be ...
3
votes
1answer
304 views

Mozilla Persona/BrowserID email address and cookies

Sorry for the generic title. I'm playing around with Mozilla's Persona at the moment. I'm using Express.js with the express-persona middleware so setting everything up was incredibly simple. The ...
2
votes
1answer
119 views

window.name as an alternative to cookie

I require to store unique data for each tab/window of the same session hence I cannot use cookies. Also these days chrome appears to retain session cookies across restarts of browser. So I am using ...
0
votes
1answer
346 views

Node.js (mysql+socket.io) Authentication PHP via Cookie?

I am currently working on integrating node.js with socket.io with my PHP Framework. When the user logs into my site I save his/her session in my database and assign him a userid. The only way I ...
1
vote
1answer
154 views

Why is cookie not getting deleted?

I have created a cookie through javascript. Which I want to clear out on logout. The site is running on SSL. Following is the JS code that I have used for the cookie creation and deletion purpose. ...
9
votes
1answer
1k views

AngularJS - How to set expiration date for cookie in AngularJS

We want to store User's Authorization information in cookie which should not be lost upon refresh (F5) of browser. We want to store authorization info in "permanent-cookie" in case user has opted for ...
0
votes
1answer
86 views

parsing cookie values to if/elseif in javascript

So I have a simple session cookie retriever and am writing the cookie values to the page. There are only two values, "Yes" and "No", otherwise it returns null. Currently, it checks if there is a ...
0
votes
1answer
84 views

Collecting data from how visitors interact (client-side) with a javascripted form

I'm doing educational research about how students use a web quiz as a study tool. I've set up a web quiz that shows photos of plants and asks students to type in the correct scientific name. ...
0
votes
1answer
2k views

How to remove session cookie

We are trying to clear the cookie details in browser on pressing 'Logout' button with the following code, but the script doesn't remove the session cookie from the browser. But by clearing the session ...
1
vote
0answers
134 views

Unable to access cookie with JavaScript set by another application

Developing Chrome Extension and linked it with the amazon.com, I log in the user from the chrome extension's popup, and setup the cookie their in the pop-up, the problem is that: Amazon's page, ...
0
votes
0answers
186 views

Cannot get JSESSIONID from document.cookie

I am trying to transfer JSESSIONID from one UIWebView to mobile safari. It seems that the only way is to share by page hash.But I cannot read by document.cookie. The result contains everything but ...
0
votes
0answers
68 views

Passing document to Javascript namespace for cookie reference

In my current project, I created javascript namespace and passed document to it like so: var Project = (function ($, document) { var Utilities = Utilities || {}; } (jQuery, document)); I have a ...
0
votes
1answer
193 views

How to access Django signed-in user information from the JavaScript?

I'm making a chrome extension (with link submission feature) for my Django-powered site. I'm using django-tastypie to post links from JavaScript. However, I can't figure out how to access django ...
0
votes
2answers
391 views

Collapsing a jQuery accordion when clicking a link outside of the accordion menu

I'm using this jQuery accordion menu found here jQuery Vertical Accordion Menu Plugin. The plugin is working well without much customization. The feature that I was really looking for that this ...
0
votes
1answer
416 views

Read Django session key cookie from Javascript

I'm using Django and I need to be able to check if the client has an active session on the server from a javascript script. Is there a way to check if the client has a valid django session key cookie ...
0
votes
4answers
1k views

javascript - code to clear the cache on closing the browser

In my web application I wants the java script to clear the cache when the user close the browser. The javascript should listen to the event and clear the cache. Can anyone please provide me sample ...
0
votes
0answers
227 views

Not able to destroy Cookie on browser close

I am using the JSP to create a cookie , I have to track the cookies value and run the business logic using cookie value. I am using the Cookie in following way ; <%! Cookie cookie = new ...
0
votes
1answer
49 views

Is it possible to set the same cookies in Flash as they are used in browser

I use js plugins like uploadify, that uses swf (flash) as uploader (to provide ajax upload). I can perform upload operation only for logged-in people. But as my website authentication happens not via ...
0
votes
1answer
93 views

Session details in Chrome

How read cookie values like expires, httponly, etc? I know I can find all these information in Dev Tools/Resources/Cookies. I read about restrictions in accessing to cookies from JS. I would like to ...
4
votes
2answers
324 views

Client only cookies - cookie which doesn't ever go to the server

I want to store user-clicked data in a cookie which never has to go to the server. Its like a session-added data, which I want to persist over sessions, as in the data just keeps adding to the cookie, ...
0
votes
2answers
107 views

Redirect Function Based on Cookie

I am using this code in my js file for redirect setTimeout('top.location=\'http://google.com/?123\';', 1000); Problem is my js file execute many time but i want to add some cookie code in js file ...
1
vote
1answer
273 views

Having session cookies expire when the browser closes but still sent to server

I'm confused about cookies. If I write a cookie like this document.cookie = "userName=" + me.name + ";"; then it is passed to the server with Ajax calls and page loads (where I read and use the ...

1 2