Как сделать, что бы скрытие попа не происходила при отводе мыши на сам попап тк там будут ссылки?
arr = new Array();
for (var i = 0, len = rsrGroups.length; i < len; i++) {
var el = rsrGroups[i];
el.mouseover(function() {
var point = this.getBBox(0);
$('#ofices').next('.point').remove();
$('#ofices').after($('<div />').addClass('point'));
// $.ajax({
// url: '/sample-page/',
// cache: false,
// beforeSend: function() {
// $('#content').html('Please wait...');
// },
// success: function(html) {
// $('#content').html(html);
// }
// });
$('.point')
.html(this.id)
.prepend($('<a />').attr('href', '#').addClass('close').text('Закрыть'))
.css({
left: point.x + (point.width / 2) - -300,
top: point.y + (point.height / 2) - 850
})
.fadeIn();
$(".contain").clone()
.css('display','block')
.appendTo(".point");
});
el.mouseout(function() {
$('.point').css('display','none');
return false;
});