The hidden div shows itself when user hovers over area on mapped image. But I need the hidden div to be positioned next to the mouse. It currently positions itself some distance from the mouse and this distance varies depending on the size of the browser window.
jquery:
$(document).ready(function(){
$(".hover_link").mousemove(function(e){
$("#box1").show();
$(".box").css({
top: (e.pageY - 240) + "px",
left: (e.pageX - 90) + "px"
});
});
$(".hover_link").mouseout(function(e){
$("#box1").hide();
});
});
CSS:
.hover_link{
display:block;
}
.box{
float: left;
vertical-align: top;
display:none;
height: 80px;
width: 250px;
background-color: #FFF;
position: absolute;
z-index: 1000;
padding:10px 10px 10px 0;
}
.boxinner{
text-align:left;
max-width:140px;
padding-left:10px;
height:80px;
float:left;
vertical-align:top;
}
HTML:
<img src="http://www.poltairhomes.com/images/swmap.jpg" width="900" height="642" border="0" usemap="#Map" />
<map name="Map" id="Map">
<area class="hover_link" shape="circle" coords="574,143,10" href="http://www.poltairhomes.com/trecerus-farm" />
</map>
<div class="box" id="box1" align="center">
<div class="boxinner">
<img src="http://www.poltairhomes.com/images/homethumb1.png" width="80px" height="80px" />
</div>
<div class="boxinner">Trecerus Farm Development: 22 Two, Three & Four bed homes.
</div>
</div>
Website: http://www.poltairhomes.com/developments/
Many thanks in advance.
EDIT: I've now updated my jquery to the following, but now the hidden div doesn't display at all:
$(document).ready(function(){
$(".hover_link").mousemove(function(e){
$("#box1").show();
$(".box").css({
top: ((e.pageY - $("#main").offest().left) + 10) + "px",
left: ((e.pageX - $("#main").offset().top) + 10) + "px"
});
});
$(".hover_link").mouseout(function(e){
$("#box1").hide();
});
});
EDIT 2: jquery is now as follows, but again, the hidden div doesn't appear to reveal:
$(document).ready(function(){
$(".hover_link").mousemove(function(e){
$("#box1").show();
var main = $("#main");
var offset = main.offset();
var mouseY = (e.pageY - main.offset.left);
var mouseX = (e.pageX - main.offset.top);
$(".box").css({
top: (mouseY + 10) + "px",
left: (mouseX + 10) + "px"
});
});
$(".hover_link").mouseout(function(e){
$("#box1").hide();
});
});