vanoha, вариант с флагом
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
jQuery(function() {
var flag = false;
jQuery("#blo").mousemove(function(e) {
X = e.pageX - jQuery(this).offset().left;
Y = e.pageY - jQuery(this).offset().top;
jQuery("#kor").html(flag ? "x=" + X + "y=" + Y : "");
})
jQuery("#blo").mousedown(function(e) {
flag = true
}).mouseup(function() {
flag = false
});
});
</script>
</head>
<body>
<div id="blo" style="width:500px; height:500px; background-color:#093;"></div>
<div id="kor"></div>
</body>
</html>