| |
Low Pro |
I've checked and re-checked this. I think the above is true. I have
document.observe("dom:loaded", function() {
if (container) {
had to resort to the debug JS below which works
// the element in which we will observe all clicks and capture
// ones originating from pagination links
var container = $(document.body);
container.observe('click', function(e) {
var el = e.element();
if (el.match('a')) {
alert("click");
}
});
}