Go to Google Groups Home    Low Pro
addBehaviour doesn't seem to work in Safari 4 beta

Ant <email2a...@gmail.com>

I couldn't get addBehaviour to work in Safari 4 beta. I changed my
code to try and debug it as follows:

Event.addBehavior.reassignAfterAjax = true;
Event.onReady(function() {
  alert("ready");

});

Event.addBehavior({
  'a:click' : function(e) {
    alert("click");
  }

});

In safari 4 I get the "ready" alert but no anchor clicks result in a
"click" alert. However in Firefox 3 both alerts work just fine. Has
anybody else experienced this?

Thanks

Anthony