• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

scope issues?

 
Ranch Hand
Posts: 204
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ok , need to mantain a javascript array over multiple pages.

I have tried creating an external javascript file with functions that store/retrieve the variable/array but when I try to get the value of the array I stored.
I get null if I am getting it from another page
This is in my external js file that is included in both my html pages


The problem is the page that creates the array and stores it everything works fine but when the other html tries to get the array It gets null... meaning the varible is not remaining for both html file.

How can I get a varible to remain across multiple pages in javascript???
Thanks
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JavaScript does not maintain state between page refreshes/loads.

When you leave the page everything is reset.

If you need to maintain state, you need to look at a way to transfer data to the server or store it locally with cookies [or local storage in modern browsers]

Eric
 
Sheriff
Posts: 67754
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Until the browsers support HTML5 storage, you can't.

Imagine that the browser is an Etch-A-Sketch -- it gets wiped clean every time a new page is loaded.

You might use cookies for small snippets of data, or server-side session storage if you're using Servlets/JSP.
 
Sam Doder
Ranch Hand
Posts: 204
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Basically I need away to save a javascript array of values. Between html pages but not going back to the server using a jsp,asp,or php page.

I can use document.cookies but this is unstable since their is no garrenty that the user has cookies enabled or security not blocking cookies ,...etc

Is their any other javascript alternative from other then document.cookies that does the same.

Basically is their anyway that you can access a js files varibles from an external javascript function/file or any other thing that you could do to save varible info/state in javascript ?


If none of this is possible then what is the best/easiest way to translate a javascript array/variable to a jsp session varible or something so I can at least have the jsp serverside stuff keep track of the state of it. (translating javascript varibles into jsp session attributes on the fly seems difficult I know no way to do it easyly in general.

Thanks

Curious in HTML5 if their is away to maintain javascript varible state over multiple html pages?



 
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Sam Doder wrote:Basically is their anyway that you can access a js files varibles from an external javascript function/file or any other thing that you could do to save varible info/state in javascript ?


Were you not just told "no"?

If none of this is possible then what is the best/easiest way to translate a javascript array/variable to a jsp session varible or something so I can at least have the jsp serverside stuff keep track of the state of it.


Store in session as JSON?
 
Sam Doder
Ranch Hand
Posts: 204
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Store in session as JSON?



are you saying just to store the javascript array in a session varible in my jsp page.
If so how can I transfer a javascript varible into this session.setattribute(...) ???

I don't know how to translate javascript into jsp java ?

Is JSON something different then javascript???

thanks
 
David Newton
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JSON can be represented by a Java string:If that string is in session, it can be used in a JSP as a JavaScript value:Building the JSON should be done with an existing library.
 
Sam Doder
Ranch Hand
Posts: 204
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
well that is not really what I can use.

My problem is I have a popup menu that contains an iframe with check boxes on it. On the iframe page I have javascript to keep track of which buttons are check and which are unchecked. The apply button js function on the div tag on the main html page must beable to have access to the javascript array on the iframe page.... This is where my issue is?

so the issue is getting the array on the iframe page to be accessible on the main page javascript functions???



 
Bear Bibeault
Sheriff
Posts: 67754
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It's a lot easier for the page in the iframe to access the parent page via top.
 
Sam Doder
Ranch Hand
Posts: 204
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
well I need away so when the person clicks the apply button on the main page to have the js array on the iframe page accessible to the button on click javascript function.

The apply button is on the main page but the checkboxes / js array is on the iframe page.

How can the onclick button function access the js array varible on the iframe page?

Thanks

I don't know what your getting at with top ,... I have used document.getElementById("frame_menu").contentDocument; to get the iframe page but I don't know how to get a js varible from the button onclick event on the main page.... it returns null or not an object.... (meaning the varible does not exist or is not in scope.
 
Bear Bibeault
Sheriff
Posts: 67754
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Access from parent to child page is tricky. You might be better off having the element register itself with the parent page (by calling a function in the parent perhaps) upon load.

Or better yet, back off from the iframe if you can. Could you perhaps use a scrolling div rather than an iframe?
 
Sam Doder
Ranch Hand
Posts: 204
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
well, I kind of need to keep the iframe alot of code would have to be rewritten.
if possible...

ya but I see what your saying had I know that iframes / js scope was going to be an issue I would have started with the scrollable div tag.

damn
 
Eric Pascarello
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How is an iframe and a scrollable div tag any different between page refreshes? Is just the iframe changing and the parent page staying the same? If that is the case, you need to save your state in the parent.

Eric
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic