Jump to content

[SOLVED] Accessing arrays from an object


lighton

Recommended Posts

Hi,

 

I wanted to create an object with an array inside

 

e.g.

function somefunc() {
var imgsOrgWidth = new Array(nosOfimg);

for(i = 0; i < nosOfimg; i++)
	{
this.imgsOrgWidth[i] = imgsOrg[i].style.width;
         }
}

 

 

then initiate the object...

var object = new somefunc() ;

 

 

and access the arrays...

width = object.imgsOrgWidth[2];

 

no luck though im guessing this is a no go in javascript

 

In short i am wanting to save the starting information about various images into an array that i can access later but does not get changed as i change their properties, and without cookies.

 

any help would be much appreciated i have been working on a large javascript function since 9 this morning  ;)

 

Link to comment
Share on other sites

using var before a variable localizes it to the function that its within, so once the function exits it no longer exists

 

So by simply dropping out the word var and adding this. your function will work correctly

 

function somefunc() {
this.imgsOrgWidth = new Array();

this.imgsOrgWidth[0] = "zero";
this.imgsOrgWidth[1] = "one";
this.imgsOrgWidth[2] = "two";
}

Link to comment
Share on other sites

  • 2 months later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.