в
пример возможно стоит добавить строки (чтобы во время перемещения объекта не выделять текст)?:
<script type="text/javascript">
document.onmousemove = function(){
document.selection && document.selection.empty ? document.selection.empty() :
(function(){
if(window.getSelection) {
var select = window.getSelection();
if(select && select.removeAllRanges) select.removeAllRanges();
}
}());
};
</script>
try to select me!
в
Mouse events возможно стоит добавить
материал про DOM Level 3 Events:
mouseenter,
mouseleave,
mousewheel