0
votes
2answers
167 views

jQuery - Remember if a timed popup has been activated after page refresh

I have a page with a popup overlay containing a form, that appears automatically after 20 seconds or is shown via the click action on a div. I need it to work so that when the page is refreshed after ...
0
votes
2answers
59 views

how to retain page data(State) in gwt except using cookies

I have an application with 6-7 tabs. All i want is that whenever i close my broswer and open it again, the page data should be retained i.e. the state of the page hould be maintained. Now in my page I ...
1
vote
2answers
144 views

Jquery cookie, working for background color but not logo image

I am using JQuery cookie to change the color of a background. I also change logo images at the same time but on page reload, I am still trying to figure out how to get the cookie to retain the logo ...
0
votes
2answers
65 views

How do i retains a buttons clicked states once clicked and once the page reloads?

Im trying to figure out how to retain a buttons clicked state once cliked and after the page reloads. In my code blow I use a onclick event so if I need to add another I'm capable of doing so... Just ...
-3
votes
1answer
74 views

What script that invloves cookies can keep a toggled div in a “CLICKED” state after the page reloads

Hello been looking around online for this for awhile and would really appreciate some help please. I need to know what script that invloves cookies can keep a toggled div in the below code in a ...
0
votes
1answer
314 views

ExtJS 4.0 cannot read connect.sid from cookie

I try do develop a web application with ExtJs 4.0. On startup the application sends a request to a server. This server sends a response. The responses' header contains Set-Cookie:"connect.sid=foobar" ...
2
votes
1answer
720 views

Multiple JQuery Accordian Menus - Remember unique states with cookies (persist state)

I am new to jquery and need some help here. I am using an accordion menu based on CSS, JavaScript, and jQuery see original version... I have a question that I hope some guru here can answer... My ...
0
votes
2answers
973 views

ExtJS 4 : How To Destroy All States When User Logout

I've set my app to use state with this code: Ext.state.Manager.setProvider(new Ext.state.CookieProvider()); But now I'm having a problem. How to destroy all states cookies?? My app needs to ...
4
votes
1answer
910 views

Django: Save and restore a form's state using a cookie

I want to make a form that once submitted, on each next rendering of the form for the same user, the form will be already filled out with the data from the last time the user submitted it. sounds like ...
0
votes
2answers
318 views

Problem in my form submit flow, form data is too big

Here is my flow: Form A post data to input.php as B If data is invalid, B send data and error code into cookie and redirect to referer url (now is Form A) Form A read data, error ...
2
votes
1answer
53 views

Simple question about session

I came across this example from Ruby's security page (http://guides.rubyonrails.org/security.html). It poses this scenario: A user receives credits, the amount is stored in a session (which is a bad ...
3
votes
2answers
3k views

How to get Javascript cookie to remember DIV state?

I've got a test site here (still in development) and I'm trying to get the little notification at the top to stay hidden once you click close. Currently my script is like this: <style ...
11
votes
13answers
942 views

Web Dev - Where to store state of a shopping-cart-like object?

You're building a web application. You need to store the state for a shopping cart like object during a user's session. Some notes: This is not exactly a shopping cart, but more like an itinerary ...