Всем привет.
Хотел приложить скрин, но не судьба
Вот код
toolTips: function(){
$("body").delegate(".toolTips", "mouseover", function(e){
var text = $(this).attr("title");
$(this).removeAttr("title");
var hht = $('#toolTipBlock').height();
var wth = $('#toolTipBlock').width();
var dhht = $(document.body).height()-2;
var dwth = $(document.body).width()-2;
var idx = 10;
$(document).bind('mousemove', function(e){
var pX, pY;
if((e.pageX+wth)>(dwth-idx)){
pX = e.pageX - wth - idx;
}else{
pX = e.pageX+idx;
}
if((e.pageY+hht)>(dhht-idx)){
pY = e.pageY - hht - idx;
}else{
pY = e.pageY+idx;
}
$('#toolTipBlock').css({
left : pX+'px',
top : pY+'px'
})
});
$('#toolTipBlock').text(text).show();
return false;
});
$("body").delegate(".toolTips", "mouseout", function(e){
$(this).attr("title", $('#toolTipBlock').text());
$(document).unbind('mousemove');
$('#toolTipBlock').hide();
return false;
});
}
Во всех браузерах нативные title не всплывают, в ИЕ - всплывают и мои, и нативные поверх. Как подавить?