Question

This page it has the following:

If we want to stop the event (e.g., prevent its default action and stop it bubbling), we can do so with the extended event object's Event#stop method:

$('foo').observe('click', function(event) {
  event.stop();
});

No correct solution

Licensed under: CC-BY-SA with attribution
scroll top