Hi I'm using Jquery's mouse position to find the position of the page.
I would like it to have it behave more like latitude and longitude coordinates.
$().mousemove(function(e){
$('#detect').html( e.pageX + '° N, '+ e.pageY + '° E' );
});
I realise this is not true latitude and longitude coordinates. The box would be the webpage, and 0 is absolute middle of the webpage. Moving the mouse into the N/E area would produce this result.
Any help would be appreciated. Thanks.