vote up 2 vote down star

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?

flag

6 Answers

vote up 6 vote down check

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|flag
Nice :) Seems Prototype has learned some new tricks since I last used it! – Erlend Halvorsen Sep 8 '08 at 13:21
vote up 1 vote down
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|flag
vote up 1 vote down

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|flag
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
vote up 1 vote down
$(document).observe('dom:loaded', function() {
    $$('a').invoke('observe', 'click', function() {
        alert('Hello world!');
    });
});
link|flag
vote up 0 vote down

@David

Can you elaborate on "selecting the elements first"?

Can I do this?

Event.observe($$('a'), 'click', function(){
  alert('Hello World!');
});
link|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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