I am new to the prototype framework and am trying something really simple and failing. I am trying to respond to a click event on a button like so:
$$(\'.btn\')
Unlike jQuery, handing selectors with multiple results in Prototype works a little differently. You need to handle each selected result separately using .each()
.
$$('.btn').each(function(element) {
element.observe('click', respond);
})
This is one of the reasons I moved over to jQuery. The other reason: knowing jQuery is marketable and knowing Prototype is not.