Bug Tracker

Modify

Ticket #9501 (closed bug: invalid)

Opened 2 years ago

Last modified 2 years ago

Effects make title tooltips slow on IE

Reported by: dany.khalife@… Owned by:
Priority: undecided Milestone: 1.next
Component: unfiled Version: 1.6.1
Keywords: Cc:
Blocking: Blocked by:

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

comment:1 Changed 2 years ago by timmywil

  • Status changed from new to closed
  • Resolution set to invalid

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.

Please follow the  bug reporting guidlines and use  jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

View

Add a comment

Modify Ticket

Action
as closed
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.