<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
img {
width: 100%;
}
</style>
</head>
<body>
<div>
<img src="http://javascript.ru/forum/images/ca_serenity/misc/logo.gif" alt="">
</div>
<output></output>
</body>
<script>
document.querySelector('img').onmousemove=function(e){
var mb = this.naturalWidth/this.width;
document.querySelector('output').value = Math.ceil(e.offsetX*mb)+'----'+Math.ceil(e.offsetY*mb);
};
</script>
</html>
не нужны тут либы