All pastes #2115551 Raw Edit

Untitled

public text v1 · immutable
#2115551 ·published 2012-02-09 21:40 UTC
rendered paste body
I want to reference my li object on which i iterate but dont know how...

myList.each(function(li,i){
	li.store('etat','ferme');
	li.addEvent('click', function(){
		li.retrieve('etat'); // dont work
		this.retrieve('etat'); // dont work either
	});
});