Jquery has a great language construct that looks like this:

$(document).ready(function() {
    $("a").click(function() {
        alert("Hello world!");
    });
});

As you might guess this, once the document has loaded, binds a custom function to the onClick event of all a tags.

The question is, how can I achieve this same kind of behavior in Prototype?

link|improve this question

feedback

7 Answers

up vote 7 down vote accepted

Prototype 1.6 provides the "dom:loaded" event on document:

document.observe("dom:loaded", function() {
    $$('a').each(function(elem) {
        elem.observe("click", function() { alert("Hello World"); });
    });
});

I also use the each iterator on the array returned by $$().

link|improve this answer
Nice :) Seems Prototype has learned some new tricks since I last used it! – Erlend Halvorsen Sep 8 '08 at 13:21
feedback
$(document).observe('dom:loaded', function() {
    $$('a').invoke('observe', 'click', function() {
        alert('Hello world!');
    });
});
link|improve this answer
this would be my solution also – seengee Jul 16 '10 at 10:28
feedback
Event.observe(window, 'load', function() { 
     Event.observe(element, 'click', function() { 
         alert("Hello World!");
     });
});

Of course you need to "select" the elements first in Prototype.

link|improve this answer
feedback

This article gives a pretty good overview of Prototype's event library. I think, compared to jQuery, this is a stone age api. :)

http://alternateidea.com/blog/articles/2006/2/8/working-with-events-in-prototype

link|improve this answer
1  
That's because the linked article is two years old. The API has evolved quite a bit since then. ;-) – savetheclocktower Nov 10 '08 at 21:15
feedback

@David

Can you elaborate on "selecting the elements first"?

Can I do this?

Event.observe($$('a'), 'click', function(){
  alert('Hello World!');
});
link|improve this answer
feedback

Eriend

I, so far, prefer a lot of things about Jquery as well. But I have a large Prototype code-base to work with. When in Rome...

link|improve this answer
feedback

@Mark Biek

Event.on(document, 'click', 'a.greeter_class[rel]', function(event, elt) {
  alert("Hello " + elt.readAttribute('rel')); event.stop();
});
link|improve this answer
FYI this is Prototype 1.7 syntax which is still in beta – seengee Jul 16 '10 at 10:28
feedback

Your Answer

 
or
required, but never shown

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