Показать сообщение отдельно
  #1 (permalink)  
Старый 31.05.2010, 17:03
Профессор
Отправить личное сообщение для exec Посмотреть профиль Найти все сообщения от exec
 
Регистрация: 21.01.2010
Сообщений: 1,022

Некорректно работает хинт
Вот код хинта:

var boofer = null;
$('a[title]').hover(function (e) {
	e = e || window.event;
	boofer = this.title,
	this.title = '';
	$('body').append($('<div class="hint" style="opacity: 0; color: #fff; padding: 3px; position: absolute; border: 1px dashed #eee; background: #555;"></div>').css({
		top: e.pageY + 20,
		left: e.pageX + 20
	}).html(boofer).animate({
		opacity: 0.8,
		top: '-=10px',
		left: '-=10px'
	},
	300));
	$(this).mousemove(function (ev) {
		ev = ev || window.event;
		$('div.hint').css({
			top: ev.pageY + 10,
			left: ev.pageX + 10
		});
	});
},
function () {
	$('div.hint').animate({
		opacity: 0,
		top: '+=10px',
		left: '+=10px'
	},
	300, function () {
		$(this).remove();
	})
	$(this).mousemove(null),
	this.title = boofer;
});


Если в IE навести мышкой на ссылку второй раз, то в хинте ничего нет. Почему?
Ответить с цитированием