Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can you setup a variable for javascript in one page and have another page load and still have it recognize the variable?

share|improve this question

2 Answers

up vote 2 down vote accepted

No.

Instead, you can use cookies.

You can also use Offline Storage, but that's not supported by older browsers.

share|improve this answer

there are some javascript-frameworks (e.g. persistjs and dojo storage) which allow to do cross-browser persistent storage of variables (using a variety of backends such as html5 localstorage, ie userbehavior, google gears, flash). better then native localstorage (as that is not supported by all browsers) and better then cookies (as they get sent back and fro with every request and response).

hope this helps

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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