As a relative beginner with JS, I am struggling to try and find a solution to this.

I need to find out which line of an unordered list was clicked

<ul onclick="alert(this.clicked.line.id);">
  <li id=l1>Line 1</li>
  <li id=l2>Line 2</li>
  <li id=l3>Line 3</li>
</ul>

I don't really want to add a onclick event to each individual line, I'm sure there must be a way ??

link|improve this question

47% accept rate
Have you tried setting a breakpoint on the onclick event, and examining the this.clicked object? – Marcin Feb 25 '11 at 11:59
feedback

2 Answers

up vote 5 down vote accepted

You can use event.target for this:

JS:

// IE does not know about the target attribute. It looks for srcElement
// This function will get the event target in a browser-compatible way
function getEventTarget(e) {
    e = e || window.event;
    return e.target || e.srcElement; 
}

var ul = document.getElementById('test');
ul.onclick = function(event) {
    var target = getEventTarget(event);
    alert(target.innerHTML);
};

HTML:

<ul id="test">
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
</ul>

Example: http://jsfiddle.net/ArondeParon/2dEFg/5/

Please note that this is a very basic example and you will likely encounter some problems when you delegate events to elements containing more than one levels. When this happens, you will have to traverse the DOM tree upwards to find the containing element.

link|improve this answer
+1 The key here is taking the Javascript out of the HTML attribute. – lonesomeday Feb 25 '11 at 12:04
This is correct as long as there are no other elemens in the li's. When you have <li><strong>Item 1</strong></li> than event.target will be the strong element (in that case you have to check the parents). – Stefaan Colman Feb 25 '11 at 12:06
Brilliant !! thanks so much, that's exactly what I want. – crankshaft Feb 25 '11 at 12:11
is it also possible to add all mouse events to an element and then determine in the handler function what event it was ?? – crankshaft Feb 25 '11 at 12:13
@crankshaft nope, you will have to bind each event manually (and this makes your code a lot more understandable as well) – Aron Rotteveel Feb 25 '11 at 12:21
show 3 more comments
feedback

The object which was actually clicked is

event.target

inside the onclick callback. What you are trying to do is a good idea, and it is known as event delegation.

http://jsfiddle.net/VhfEh/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.