Bug Tracker

Opened 12 years ago

Closed 12 years ago

#9501 closed bug (invalid)

Effects make title tooltips slow on IE

Reported by: [email protected] Owned by:
Priority: undecided Milestone: 1.next
Component: unfiled Version: 1.6.1
Keywords: Cc:
Blocked by: Blocking:

Description

Hello there, I am having a problem with the following code only on IE:

function glowSeats(){
	$(".msca").each(function(){
		$(this).effect("highlight", {}, 100);
	});
}

$(document).ready(function(){
	window.setInterval(glowSeats,1000);
});

I have table cells containing <a> tags with titles such as <a title="Testing..">tooltip test</a> and other table cells with class names 'msca' that need to glow on regular interval as shown in the JS above

Now firefox handles this very smoothly and with no delay at all Hovering the <a> with titles displays the tooltip as normally like this :

<table>
<tr>
<td><a title="example1">X</a></td>
<td><a title="example2">Y</a></td>
<td><a title="example3">Z</a></td>
<td><a title="example4">S</a></td>
</tr>
<tr>
<td class="msca">Error</td>
<td>No error</td>
<td class="msca">Error</td>
<td>No error</td>
</tr>
</table>

But in IE, the tooltips don't even show up sometimes, and when they do, they show up reaaally slow and disappear reaaaaly slow

So after some trial and error with figuring out which code was doing this, i found out it was that function above, which needs to run at regular intervals...

I hope you can fix this because it is really important in the project i am working on

I should note that the elements with the class "msca" are variable in my project, but when i noticed the bug, they were 17 So thats 17 effects running at the same time on that page I know that could be a lot to handle, but since FF is handling it pretty well, i am wondering if its because of jQuery that IE isn't

Thanks in advance for the help

Change History (1)

comment:1 Changed 12 years ago by timmywil

Resolution: invalid
Status: newclosed

Thanks for taking the time to contribute to the jQuery project!

Unfortunately, we are unable to assist with issues related to third-party plugins or jQuery UI. For issues with jQuery UI, see the jQuery UI Bug Tracker.

Note: See TracTickets for help on using tickets.