This is a message.

Too slow on IE Created May 18, 2010

This thread is solved

Views: 4383     Replies: 11     Last reply Jan 14, 2012  
You must login first before you can use this feature

hotstyle

Posts: 2

Registered:
May 17, 2010

Too slow on IE

Posted: May 18, 2010

It works just fine with FireFox but very slow on IE 6 or 7.

There is 66 rangeinput elements on the page.

The code for rangeinput is here:

$(":range").rangeinput({
	progress: true
});

Thank you for all your great job!
Have a great day!

Tero
Author of jQuery Tools and this website + JavaScript developer of Flowplayer.

Posts: 1868

Registered:
Nov 16, 2007

» Too slow on IE

Posted: May 19, 2010

Reply to: Too slow on IE, from hotstyle
the only optimizations you can do is not to include any change listeners and remove that progress: true parameter. otherwise the tool is as fast as it can get.

hotstyle

Posts: 2

Registered:
May 17, 2010

» Too slow on IE

Posted: May 19, 2010

Reply to: » Too slow on IE, from tipiirai
Thank you for the answer.

Unfortunately the solution you have offered doesn't work at all in my case.

The following is what firebug tells about the page.
http://www.ndroy.com/firebug.png

Thank you for all your concerns.
Have a great time!

hatetoregister

Posts: 3

Registered:
Dec 6, 2010

» » Too slow on IE

Posted: Dec 6, 2010

Reply to: » Too slow on IE, from hotstyle
Hi hotstyle,
I know this post is old, but I had the same problem with IE and FireFox and I wanted to tell anyone who has the same issue what I discovered.

I had nested tabs on my page that worked perfectly without any content on them. Once I started adding content to them, the tabs started to perform painfully slow in FireFox. I couldn't figure out what was wrong. I removed the content and tested things again and the tab switching was quick again and back to normal. So I incrementally started adding content back to the tabs to see what exactly was causing the problem. What I found was that loading the tabs down with too much content slows the reaction time when clicking on the tab. I have to investigate further to see what is happening behind the scenes, but if you are having this issue, just know that it likely has to do with your content and NOT the jquery tools. I will post back here after I have determined the EXACT issue. In my case, I am using a rather long for loop to populate the content of all of my tabs dynamically.

hatetoregister

Posts: 3

Registered:
Dec 6, 2010

» » » Too slow on IE

Posted: Dec 8, 2010

Reply to: » » Too slow on IE, from hatetoregister
OK. After testing this issue, I have discovered that the issue, at least in Firefox, is caused by an add on. After removing all of my add ons and restarting my computer and then testing things, I discovered that everything ran normally. I also noticed the same behavior in Internet Explorer. My suggestion would be that you remove your add ons in IE, restart your computer and test out your site. That solved the performance issue I was seeing.