как получить индекс элемента в Mootools как в jQuery.Например:
this.controls.addEvent('click', function(event){ if (this.hasClass('h-inactiveslideshowcontrol')) { alert(this.index); } });
Как получить индекс нажатого элемента?
Сначала пройдитесь по коллекции элементов.
this.controls.each(function(element, index){ element.addEvent('click', function(event){ if (this.hasClass('h-inactiveslideshowcontrol')) { alert(index); } }); });