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