1
vote
2answers
2k views
How to pass arguments to addEventListener listener function?
The situation is somewhat like-
var someVar;
someVar = some_other_function();
someObj.addEventListener("click",
function(){
some_ …
0
votes
4answers
518 views
Identifying list item index - which is a better approach?
I need to pick up list items from an list, and then perform operations like adding event handlers on them. I can think of two ways of doing this.
HTML:
<ul id="list"& …
