On Aug 27, 6:45 pm, Mike Miller <[EMAIL PROTECTED]> wrote: > I have an html element that has an onclick attribute set which calls a > couple of JS functions. Using jquery I am adding a click event to the > same element. Can anyone tell me what the expected execution of js > functions will be?
There was a series of posts a few weeks ago where John Resig said that it is not supported to have both a local onclick and a click() handler. Use one or the other, but not both. IIRC (maybe wrong), the click() function simply overwrites the onclick handler.