[jQuery] jQuery("") issue in 1.1.4

2007-09-03 Thread devsteff
Hi folks, I figured out a problem in the brand new 1.1.4 version with IE 6+ wich breaks my existing code. In firefox 1.5+ everything is fine, didn't test any other browsers. I create a couple of dynamic html element with the html("some html code") function. The following codesnipplet results un

[jQuery] Re: Weird IE behavior - need help

2007-06-11 Thread devsteff
thanks again, the thing with the each-"scoped" functions was really new to me. I'm really waiting for johns book :) the reason for the jquery unlike class string manipulation was the weired behavior and my thought that multiple css changes can produce the slowdown effect. i will change it back to

[jQuery] Re: Weird IE behavior - need help

2007-06-06 Thread devsteff
{ > var row = $(this); > row.hover( > function() { > setTimeout( function() { row.addClass('hover'); }, 0 > ); > }, > function() { > setTimeout( function() { row.removeClass('hover'); }, > 0 ); > } > ); > > }); > > Somehow using the "setTimeout" bypasses, or shortens, the rendering delay. > > Karl Rudd > > On 6/6/07, devsteff <[EMAIL PROTECTED]> wrote:

[jQuery] Re: Weird IE behavior - need help

2007-06-05 Thread devsteff
owser.msie ) > document.execCommand("BackgroundImageCache", false, true) > > Karl Rudd > > On 6/5/07, devsteff <[EMAIL PROTECTED]> wrote:

[jQuery] Weird IE behavior - need help

2007-06-05 Thread devsteff
Hi jQuery community, I've written a complex jQuery table plugin wich supports different selection models (single, multiple, exclusive), nested/hierarchical tables (like a tree) etc. Everything works well, but now - while the application goes testing by some clients - I stumbled by an very ugly p