vote up 1 vote down star

This is what I have basically:

<a href="http://somelink.com">
    <span>stuff</span>
    <span onclick="AwsomeFunction();">more stuff</span>
    <span>the last stuff</span>
</a>

Now, the problem is I want to keep the parent as a link but if the user clicks the span with the onclick event I don't want the browser to follow the link.

I've tried

event.stopPropagation();

but that only seems to stop the links onclick event from firing, or I'm doing something wrong.

I'm currently sort of in crunch mode and I don't want to spend too much time rewriting the code that generates this HTML, but it still can't be a hack since it's implemented in a pretty vital function of the site. Any help appreciated.

flag

3 Answers

vote up 2 vote down check

Make the javascript method return false!

link|flag
Doh! Thanks. Can't believe I missed that... – Oscar Kilhed Oct 22 at 15:09
vote up 3 vote down

sure, just return false in the onclick

something like

<a href="somwhere" onclick="return false;">nothing happens</a>
link|flag
Well... That's not quite right. He still wants the follow the link when he clicks the other spans. This code will stop the browser from following the link an any click on it. Not just the span with the onClick event. – Sani Huttunen Oct 22 at 15:23
that is just an example of an A that does not follow its href onclick... – Victor Oct 22 at 15:34
vote up 3 vote down
<a href="http://somelink.com">
    <span>stuff</span>
    <span onclick="AwsomeFunction(); return false;">more stuff</span>
    <span>the last stuff</span>
</a>
link|flag

Your Answer

Get an OpenID
or

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