i need a clue how to stop the #bubble flickering as soon as i move the mouse pointer above it, these two elements are placed on each other, the canvas' onMouseMove is obviously interfering with it, i use Chrome for testing.
<p id="bubble" onclick="noBubble();"></p>
<canvas id="kogal" width="450" height="630" onmousedown="onMouseDownkogal(this, event);" onmousemove="onMouseMoveKogal(this, event);" onmouseup="onMouseUpKogal();" onmouseout="onMouseOutKogal();">
is it possible to stop the onMouseMove for the canvas only when the mouse pointer is above the #bubble? i have tried preventDefault and return false in several combinations to no avail, thank you for any tips. ^_^