2012-08-16, 04:21 PM
Actually, I've kind of almost figured this out. Kind of. I now have the event getting stopped and everything, I just need to make the effect work
Event.observe(window, 'load', function() {
Event.observe('unreadAlerts_menu', 'click', function(e) {
Event.stop(e);
var popup_id = e.target.identify() + '_popup';
Effect.toggle(popup_id, 'blind');
});
});