[jQuery] Re: cluetip IE8 very slow adding to table rows

2009-04-30 Thread DotnetShadow

Thanks Karl,

All good you are doing a wonderful job, I know what you mean with time

Regards DotnetShadow

On Apr 30, 12:50 am, Karl Swedberg k...@englishrules.com wrote:
 So sorry, I haven't had a chance to fully explore this yet. Not  
 ignoring you. Just having a hard time finding the time and tracking  
 down the problem.

 --Karl

 
 Karl Swedbergwww.englishrules.comwww.learningjquery.com

 On Apr 28, 2009, at 10:31 AM, DotnetShadow wrote:



  Hi there,

  I was wondering if you had a chance to try out cluetip on IE8 in
  regards to this issue?

  Regards DotnetShadow

  On Apr 18, 12:32 am, Karl Swedberg k...@englishrules.com wrote:
  Not sure what's going on there, to be honest. I'll have to take a  
  look
  as soon as I find some more time. It might just be that binding
  cluetip to a whole lot of elements won't work. I've used event
  delegation to get around this sort of problem with other plugins, but
  unfortunately I can't do it here without a complete re-architecting  
  of
  the plugin and the elimination of the hoverIntent feature.

  I don't think this will improve performance, but you could write your
  script like this:

  $(document).ready(function() {

       $(.user).cluetip();

  });

  --Karl

  
  Karl Swedbergwww.englishrules.comwww.learningjquery.com

  On Apr 16, 2009, at 11:07 AM, DotnetShadow wrote:

  Hi there,

  I've recently been using cluetip on a datable of about 400 rows.
  Recently I tested this against IE8 and found it very very slow.

  Doing simply the following:

  $(document).ready(function() {

      $(.user).each(function(i) {
           $(this).cluetip();
       }
  });

  Basically for each row in my table (400 rows) it would attach the
  cluetip to it.
  In IE8 it would freeze the browser for a good minute, if I pushed  
  the
  compatibility mode button to run in IE7 mode it worked as expected.

  In all other browsers it worked perfectly.

  Is there something different going on with IE8?

  Thanks in advance
  DotnetShadow


[jQuery] Re: cluetip IE8 very slow adding to table rows

2009-04-29 Thread Karl Swedberg
So sorry, I haven't had a chance to fully explore this yet. Not  
ignoring you. Just having a hard time finding the time and tracking  
down the problem.


--Karl


Karl Swedberg
www.englishrules.com
www.learningjquery.com




On Apr 28, 2009, at 10:31 AM, DotnetShadow wrote:



Hi there,

I was wondering if you had a chance to try out cluetip on IE8 in
regards to this issue?

Regards DotnetShadow

On Apr 18, 12:32 am, Karl Swedberg k...@englishrules.com wrote:
Not sure what's going on there, to be honest. I'll have to take a  
look

as soon as I find some more time. It might just be that binding
cluetip to a whole lot of elements won't work. I've used event
delegation to get around this sort of problem with other plugins, but
unfortunately I can't do it here without a complete re-architecting  
of

the plugin and the elimination of the hoverIntent feature.

I don't think this will improve performance, but you could write your
script like this:

$(document).ready(function() {

 $(.user).cluetip();

});

--Karl


Karl Swedbergwww.englishrules.comwww.learningjquery.com

On Apr 16, 2009, at 11:07 AM, DotnetShadow wrote:




Hi there,



I've recently been using cluetip on a datable of about 400 rows.
Recently I tested this against IE8 and found it very very slow.



Doing simply the following:



$(document).ready(function() {



$(.user).each(function(i) {
 $(this).cluetip();
 }
});



Basically for each row in my table (400 rows) it would attach the
cluetip to it.
In IE8 it would freeze the browser for a good minute, if I pushed  
the

compatibility mode button to run in IE7 mode it worked as expected.



In all other browsers it worked perfectly.



Is there something different going on with IE8?



Thanks in advance
DotnetShadow




[jQuery] Re: cluetip IE8 very slow adding to table rows

2009-04-28 Thread DotnetShadow

Hi there,

I was wondering if you had a chance to try out cluetip on IE8 in
regards to this issue?

Regards DotnetShadow

On Apr 18, 12:32 am, Karl Swedberg k...@englishrules.com wrote:
 Not sure what's going on there, to be honest. I'll have to take a look  
 as soon as I find some more time. It might just be that binding  
 cluetip to a whole lot of elements won't work. I've used event  
 delegation to get around this sort of problem with other plugins, but  
 unfortunately I can't do it here without a complete re-architecting of  
 the plugin and the elimination of the hoverIntent feature.

 I don't think this will improve performance, but you could write your  
 script like this:

 $(document).ready(function() {

      $(.user).cluetip();

 });

 --Karl

 
 Karl Swedbergwww.englishrules.comwww.learningjquery.com

 On Apr 16, 2009, at 11:07 AM, DotnetShadow wrote:



  Hi there,

  I've recently been using cluetip on a datable of about 400 rows.
  Recently I tested this against IE8 and found it very very slow.

  Doing simply the following:

  $(document).ready(function() {

      $(.user).each(function(i) {
           $(this).cluetip();
       }
  });

  Basically for each row in my table (400 rows) it would attach the
  cluetip to it.
  In IE8 it would freeze the browser for a good minute, if I pushed the
  compatibility mode button to run in IE7 mode it worked as expected.

  In all other browsers it worked perfectly.

  Is there something different going on with IE8?

  Thanks in advance
  DotnetShadow


[jQuery] Re: cluetip IE8 very slow adding to table rows

2009-04-20 Thread DotnetShadow

Hi there,

I actually used your suggestion and things looked to be faster but now
the problem is that the actual cluetip loads slowly and doesn't get
cached. There is a delay of 1 - 2 seconds for it to load for some
reason. Perhaps you can try testing it on IE8 you can download a
virtual machine from Microsoft if you don't want to install IE8

Regards DotnetShadow

On Apr 18, 12:32 am, Karl Swedberg k...@englishrules.com wrote:
 Not sure what's going on there, to be honest. I'll have to take a look  
 as soon as I find some more time. It might just be that binding  
 cluetip to a whole lot of elements won't work. I've used event  
 delegation to get around this sort of problem with other plugins, but  
 unfortunately I can't do it here without a complete re-architecting of  
 the plugin and the elimination of the hoverIntent feature.

 I don't think this will improve performance, but you could write your  
 script like this:

 $(document).ready(function() {

      $(.user).cluetip();

 });

 --Karl

 
 Karl Swedbergwww.englishrules.comwww.learningjquery.com

 On Apr 16, 2009, at 11:07 AM, DotnetShadow wrote:



  Hi there,

  I've recently been using cluetip on a datable of about 400 rows.
  Recently I tested this against IE8 and found it very very slow.

  Doing simply the following:

  $(document).ready(function() {

      $(.user).each(function(i) {
           $(this).cluetip();
       }
  });

  Basically for each row in my table (400 rows) it would attach the
  cluetip to it.
  In IE8 it would freeze the browser for a good minute, if I pushed the
  compatibility mode button to run in IE7 mode it worked as expected.

  In all other browsers it worked perfectly.

  Is there something different going on with IE8?

  Thanks in advance
  DotnetShadow


[jQuery] Re: cluetip IE8 very slow adding to table rows

2009-04-17 Thread Karl Swedberg
Not sure what's going on there, to be honest. I'll have to take a look  
as soon as I find some more time. It might just be that binding  
cluetip to a whole lot of elements won't work. I've used event  
delegation to get around this sort of problem with other plugins, but  
unfortunately I can't do it here without a complete re-architecting of  
the plugin and the elimination of the hoverIntent feature.


I don't think this will improve performance, but you could write your  
script like this:


$(document).ready(function() {

$(.user).cluetip();

});


--Karl


Karl Swedberg
www.englishrules.com
www.learningjquery.com




On Apr 16, 2009, at 11:07 AM, DotnetShadow wrote:



Hi there,

I've recently been using cluetip on a datable of about 400 rows.
Recently I tested this against IE8 and found it very very slow.

Doing simply the following:

$(document).ready(function() {

$(.user).each(function(i) {
 $(this).cluetip();
 }
});

Basically for each row in my table (400 rows) it would attach the
cluetip to it.
In IE8 it would freeze the browser for a good minute, if I pushed the
compatibility mode button to run in IE7 mode it worked as expected.

In all other browsers it worked perfectly.

Is there something different going on with IE8?

Thanks in advance
DotnetShadow