[jQuery] Order of execution with onclick and click

[jQuery] Order of execution with onclick and click


Hi,
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?
ex:
<element id="el1" onclick="jsfunction1" />
$.("#el1").click(function () {
anotherFunctionHere;
});