<html>
<head>
<title> r10 - Alchalade :) </title>
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
</head>
<body>
<div id="kare" style="background-color:#ccc; width:200px; height:200px; margin-left:400px;">klöä
</div>
</body>
</html>
<script>
$(function() {
$('#kare').mousemove(function(e) {
var offset = $(this).offset();
console.log("x:" +(e.pageX - offset.left));
console.log("y:" +(e.pageY - offset.top));
});
});
</script>f12 ile tarayicinin konsolu acarsan orada degerleri görebilirsin