vote up 0 vote down star

Hi I have a html code:

<a onclick="return OnDigitClick('2')">2</a>

And global event handler:

addEventListener("click", function(event) {...}, true);

The problem is that onclick function for the 'a' element is never executed. It seems that global event handler prevents it from execution. Is there any way to solve this? Or mayby I can fire this function manually from an event handler (how)?

flag
can you format your post properly? – thephpdeveloper Sep 18 at 9:17
can you show the code for the global click handler? – Aaron Qian Sep 18 at 9:25
also OnDigitClick function as well – Aaron Qian Sep 18 at 9:26

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.