chamika.deshan 0 Newbie Poster

Hi
I have a class page.js
page.js
-------

var band = null;
for(var i=0; i<=10; i++)
{
	band = new Band( 100, 100);
	band.onDragstart = function() 	{
				alert(i);
				};
}

each time ondragstart triggers this prints the value 10 for all band objects. if i need to print 0,1,2,3...10 what should i do?