Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Solved] Very slow in IE?
8th September, 22:22 (This post was last modified: 8th September 22:22 by psmith98752.)
Post: #1
[Solved] Very slow in IE?
Hey

Great plugin, really appreciate the time this took to write!

Chrome is fine but this is slow in IE. Each table row has the class "myTableRow", each with a unique ID and there is a DIV with that ID+"tooltip" we want to show on hover. Theres a delay in moving the mouse over each row in IE and the CPU spikes.

There isnt that many rows with tooltips, say under 20. Can this be coded any better?

JS Code
$(".myTableRow").each( function(){
		if ($("#"+$(this).attr('id')+"tooltip").length > 0){
			$(this).qtip({
				content: $("#"+$(this).attr('id')+"tooltip").html(),
				position: {corner: {target: 'bottomMiddle', tooltip: 'topMiddle'}},
				show: {delay:0, effect:{length:0}, solo: true},
				hide: {delay:0, effect:{length:0}},
				style: {name: 'light',tip: 'topMiddle'}
			});
		};
	});
Find all posts by this user
Quote this message in a reply
11th September, 08:45
Post: #2
RE: Very slow in IE?
psmith, if you're having performance issues please take a look at upgrading to the 2.0 branches, as 1.0 is known to be a resource hog!

Craig Thompson
Web Developer / Designer
Craigsworks
http://www.craigsworks.com
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  [Solved] Many tooltips on image map causing slow down purplespider 2 705 2nd September 15:15
Last Post: purplespider
  slow to load cman 2 506 22nd March 19:50
Last Post: cman
  [Solved] qTip slow to display, and hangs around after being destroyed sammyp 1 942 16th February 20:55
Last Post: Craig
  Tooltip is slow petrik 0 388 11th January 13:57
Last Post: petrik
  IE7 / IE8 emulation mode very slow table 1000 rows qTip from function Dotnetshadow 11 3,702 12th June 20:00
Last Post: Craig



User(s) browsing this thread: 1 Guest(s)