Let's say I have a <div>.
<div>
When onMouseUp fires, I do setTimeout(..., 0).
onMouseUp
setTimeout(..., 0)
Is the onClick event guaranteed to fire before the timeout?
onClick