vote up 1 vote down star

I want to create a link like this:

<a href="http://example.com">text</a>

and replace the behavior so that the link downloads the content with Ajax instead when clicking.

It is important for me not to replace the href attribute (so copying the link still works).

One solution would be to do:

$('link').onclick = function() { return false; };

but I would like to use the .observe method. But this doesn't work:

$('link').observe('click', function() { return false; });

(which is quite logical).

Any ideas on how I could achieve this?

Thanks.

flag
1  
Looks like you got your answer. The courtesy at this point is to accept one by clicking the large checkbox next to the answer you found most helpful. – Crescent Fresh Sep 9 at 14:22
Yeah sorry! I'm new to this. Thanks. – enyo Sep 22 at 10:42

2 Answers

vote up 1 vote down check

You have to use the event object to achieve this with prototype.

$('link').observe('click', function(event) { event.stop() });
link|flag
Yeah that's it! Thanks to everybody for the solution... – enyo Sep 9 at 13:26
vote up 1 vote down

Hello, did you try this ?

$('link').observe('click', function(e) { Event.stop(e); });

or

$('link').observe('click', function(e) { e.stop(); });

or

$('link').observe('click', Event.stop);
link|flag

Your Answer

Get an OpenID
or

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