Thanks!!! T.J. that solved it.
Here is piece of code I have now:
var DOM0Handler = $(n).onclick;
$(n).onclick = "";
n.observe('click', function(evt) {
alert('im done!');
if (conditiontrue)
DOM0Handler();
else
return;
});
type value of onclick is always function for me so I just need to
invoke it.
Thanks a lot!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Prototype & script.aculo.us" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---