vote up 0 vote down star

I am developing a Javascript library to FluidDB HTTP API.

Since FluidDB API does not support JSONP I am forced to use AJAX and hence to develop a firefox extension to workaround AJAX's same origin policy.

My solution is to include a HTML file inside the extension. That HTML file displays a simple form where the user could enter the username, password and the other GET/POST data that forms a request.

I load the HTML file using the chrome URL.

When the user enters his username and password I want to store it somewhere persistently and spare him the trouble of having to enter it everytime. I tried creating cookies but it did not work as the webpage is not a valid domain.

Are there any alternatives?

flag

60% accept rate
2  
yes, i am shouting: DO NOT STORE THE PASSWORD AS A COOKIE! – geowa4 Nov 4 at 17:47

1 Answer

vote up 1 vote down

Hi, Once I had the same issue "cookie-less Session Variables in JavaScript", while working on my project.so came across one method called window.name="some value",take a look of following link which i had digg during my project.Hope it will be useful for you.. please dont ignore the caveats. cookie-less Session Variables in JavaScript

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.