vote up 0 vote down star
for ( var i=0; i<thumbs.length; i++)
    	{
    		var num = i;
    		Core.addEventListener(thumbs[i], "click",  Slide.thumbClick);
    	}

in the above code, i want to pass the value of var num to the thumbClick eventlistener. but i am unable to. if i try to display that value, it gives an undefined value. pls help

flag

53% accept rate
I don't understand... What is the code that isn't working? With the above code you're not passing num to anything. – musicfreak May 18 at 0:16
the Slide.thumbClick cannot pass arguments. dont ask me why the Core library doesnt support such syntax. im a n00b here. i somehow need to access this num value in other function. the num value is defined in this part but if i access it in any other funciton, it displays "undefined" value. – amit May 18 at 5:48
warning JS0040: variable num is assigned but never used on line 3 :) – xtofl May 18 at 7:43
What library are you using? What are the 'Core' and 'Slide' objects/functions? – xtofl May 18 at 7:48
i am using the core library from sitepoint.com's ebook. also the slide is the main object/function of the script. – amit May 18 at 15:51

2 Answers

vote up 1 vote down

Don't remember for sure, but you should be able to do something like this:

Core.addEventListener(thumbs[i], "click", function() {
    //...do stuff here
});

var num should still be available to this anonymous function.

link|flag
Very good hint. When clicked, the 'this' becomes thumb[i]. Slide.thumbclick probably assumes another this. – xtofl May 18 at 7:44
vote up 0 vote down

One way to do it would be to create a dynamic function.

Something like this. (I'm basing this on my experience with other ECMAScript-based languages, you might want to double-check to make sure this works.)

for ( var i=0; i<thumbs.length; i++)
{
        var num = i;
        Core.addEventListener(thumbs[i], "click",  new function(evt){
            Slide.thumbClick(num);
        });
}
link|flag

Your Answer

Get an OpenID
or

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