[jQuery] Re: Intentionally wrong nested tags?

2008-08-21 Thread webrocker
Hi Mike, On 21 Aug., 22:11, "Michael Geary" <[EMAIL PROTECTED]> wrote: > It isn't possible to insert tags, or partial tags, into the DOM. All you can > insert into the DOM is DOM nodes, which by definition always follow the > proper tree structure. > '' is a complete tag with begin and end, and $

[jQuery] Intentionally wrong nested tags?

2008-08-21 Thread webrocker
Hi, I have a rather long unordered list with about hundred items inside. each is wrapped in ... I want to split this list into several small lists, with, say, 10 items each. to do that I have this code: checkvar = 1; $('#right ul li').each(function(){ if( checkvar

[jQuery] Re: Sortable on dynamic content - how to?

2007-11-12 Thread webrocker
axis: 'vertically', opacity: 0.4, revert: true } ) }); this should do the trick... (again, not tested) On 12 Nov., 12:57, asle <[EMAIL PROTECTED]> wrote: > Thanks webrocker, > s

[jQuery] Re: Sortable on dynamic content - how to?

2007-11-12 Thread webrocker
hi, I would try and re-declare the .Sortable object after you've appended the content and see if that works. This would mean that the .Sortable object works only on elements present inside the ul the moment the object is "given". Prior to this I would have a look at the generated source after you'

[jQuery] Re: interrupting a delayed effect?

2007-10-27 Thread webrocker
s('display') != 'block' ){ clearTimeout(timer); } return false; } ); On 27 Okt., 10:51, webrocker <[EMAIL PROTECTED]> wrote: > hi group, > > I use the pause-plugin (http://blog.mythin.net/projects/jqu

[jQuery] interrupting a delayed effect?

2007-10-27 Thread webrocker
hi group, I use the pause-plugin (http://blog.mythin.net/projects/jquery.php) to delay an slidedown-effect in my navigation if the user mouseovers a link. I have slightly modified it to get it to work (changing line 29 from $.dequeue(self) to $(self).dequeue() So this works fine: $('#navigation

[jQuery] Re: Noob Question - .add() not working in IE?

2007-07-26 Thread webrocker
.attr("style") == "display: none;" > > Up until just the other day, that wasn't working in IE (it's fixed > now, and it will be in jQuery 1.1.4). In the meantime I recommend that > you do: > > .is(":hidden") > > or: > > .css("disp

[jQuery] Re: Noob Question - .add() not working in IE?

2007-07-25 Thread webrocker
Sorry, it should of course read ".append() not working in IE" in the title of this post, not ".add() not working in IE". :-/

[jQuery] Re: Noob Question - .add() not working in IE?

2007-07-25 Thread webrocker
Sorry, it should of course read ".append() not working in IE" in the title of this post, not ".add() not working in IE". :-/

[jQuery] Noob Question - .add() not working in IE?

2007-07-25 Thread webrocker
Hello group, I try to dynamically add some tags and content to an existing element (basically a toggle-link, that's only to be seen if JS is active and that slideToggles a div). Somehow my code doesn't work in IE, although it works fine in other browsers like Firefox or Safari: +