Hi I am working on mouse pointer position function which is working perfectly except safari.
I am struggling with it from many hours but cant find the solution. Here is my function fiddle http://jsfiddle.net/PdCxm/
<head>
<script type="text/javascript" src="jquery-1.7.2.js"></script>
<script type="text/javascript">
$(function(){
$('li').click(function(e){
var pagex= e.clientX;
$('.radiogrup').text(pagex)
})
})
</script>
<style>
*{ margin:0}
ul{list-style:none}
label{display:block}
li{ padding-top:5px; width:115px; border:solid 1px #FF0000}
</style>
</head>
<body>
<ul>
<li>
<label>
<input type="radio" name="test"/>
</label>
</li>
<li>
<label>
<input type="radio" name="test"/>
</label>
</li>
</ul>
<div class="radiogrup">
</div>
</body>
kind of
little workaround:
http://jsfiddle.net/PdCxm/7/