Get id of clicked url

C

Chris

I'm sure this is simple and involves 'this' but my javascript powers
are not too hot.

From the url below how do I pick up the url's id in the function
taking into consideration this could be one of many urls?

<a href="javascript:void(0)" onclick="foo()" id="bar">

I thought this might have worked but it doesn't...

foo {
str = this.GetElementById
}

Cheers,

Chris
 
T

Thomas 'PointedEars' Lahn

This cannot work. It is syntactically invalid (the identifier MUST be
preceded by the `function' keyword, and followed by a list of named
arguments, even if that is empty), pointless (`this' refers to the Global
Object in a globally called method, not the object handling the event),
error-prone (`str' was not declared a variable), and simply wrong even if
the correct object was being referred to (ECMAScript implementations are
case-sensitive, the method identifier is `getElementById', and it would not
be called, but referenced, here because the argument list was missing.)

That is IE-proprietary, and therefore nonsense in this general context. The
(so far) interoperable approach is the obvious one (which includes proper
syntax):

function foo(o)
{
var str = o.id;
}

<a href="..." onclick="foo(this)" id="bar">

However, it is likely then that you don't need the ID anymore as you have
the object element reference with `o' already.

Please RTFFAQ and RTFM before you post here again.

My name is not Mike, but you are welcome, I think.


PointedEars
 
A

Arun

Remember, window.event only works on Internet Explorer versions 5.0
onwards. What you need is a simple cross-browser solution like the
following:

function foo(e)
{
var sourceElm = (e.target) ? e.target : window.event.srcElement;
alert(sourceElm.id);
}

...where e is passed as an object of window.event in IE, but in
Firefox, it is passed as an implicit event object. IE uses the
window.event.srcElement routine to get to the calling object,
but in EOMB (every other modern browser), e.target is used to
retrieve the calling object.

You will call the above method simply like this:

<a id="bar" href="javascript:void(0);" onclick="foo(event)">Click
me</a>

Cheers,
Arun
 
R

RobG

Remember, window.event only works on Internet Explorer versions 5.0
onwards. What you need is a simple cross-browser solution like the
following:

 function foo(e)
 {
   var sourceElm = (e.target) ? e.target : window.event.srcElement;
   alert(sourceElm.id);
 }

Given your code below, e is a reference to window.event in IE
already. The usual pattern here is:

function foo(e) {
var e = e || window.event;
var tgt = e.target || e.srcElement;

/* do stuff with e and tgt */

}

Noting that tgt will be reference to the element that initiated the
event, which is not necessarily the element that has the listener
(consider a bubbling event from a span inside the A element).


[...]
..where e is passed as an object of window.event in IE, but in
Firefox, it is passed as an implicit event object. IE uses the
window.event.srcElement routine to get to the calling object,
but in EOMB (every other modern browser), e.target is used to
retrieve the calling object.

You will call the above method simply like this:

  <a id="bar" href="javascript:void(0);" onclick="foo(event)">Click
   me</a>

Put something meaningful in the href attribute or replace the A
element with something more appropriate (a button or styled span
maybe).


The onclick listener should return false if the link should not be
followed:

<a href="usefulLink.html" onclick="return foo(event);"> ... </a>

and within foo:

function foo(e) {
if (...) {
/* all OK, don't follow the link */
return false;
} else {
...
}
}


The use of event as an argument to the call to foo means that both in
common event models a reference to the event object will be passed to
foo. It is the only way to get a reference to the event object from
an inline listener in browsers that don't implement window.event.

In any case, as suggested by Thomas, the simplest solution is to have
the listener pass a reference to the element using the this keyword:

<a ... onclick="return foo(this);"> ... </a>

and:

function foo(el) {
/* el is a reference to the node that called foo */
}

So el will be a reference to the element that has the listener,
regardless of the source or target element.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,436
Messages
2,571,696
Members
48,796
Latest member
Greg L.
Top