On 5/30/06, Didier Ernotte <[EMAIL PROTECTED]> wrote:
Maybe?button.setAttribute("ident", ixyzt); button.addEventListener('click', function (event){ foo(event.target.getAttribute("ident")}, 'false'); ixyzt++; Didier
That's correct solution, but the last param to addEventListener should be a boolean, not a string. (Your 'false' gets passed as true actually.) Nickolay _______________________________________________ Project_owners mailing list [email protected] http://mozdev.org/mailman/listinfo/project_owners
