perfetto!
lascio un esempio di come ho fatto, magari potrà serivr a qualcuno, ho ripreso lo scripr d'esempio sul sito jquery e ci ho aggiunto la posizione del mouse
codice:
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.4.4.js"></script>
</head>
<body>
<div id="posizione" style='width:300px; height:300px; background:#555555;'>Press mouse and release here.</div>
<script>
$("#posizione").mouseup(function(e){
$(this).append('<span style="color:#F00;">Mouse up.</span>');
$(this).append(e.pageX +', '+ e.pageY);
}).mousedown(function(e){
$(this).append('<span style="color:#00F;">Mouse down.</span>');
$(this).append(e.pageX +', '+ e.pageY);
});
</script>
</body>
</html>
grazie