[jQuery] Re: Effect like Kwicks plugin

2008-11-17 Thread Andy Matthews
Here's a version I've got using the kwicks plugin and divs nested inside the LI tags: http://commadelimited.com/code/maternitymealplanner/kwicks-1.html It's working quite well, but I'm still not convinced that nesting divs inside list items is a good idea. andy -Original Message-

[jQuery] Re: Effect like Kwicks plugin

2008-11-17 Thread Andy Matthews
Anyone have any input on this? I'd also like to determine if I can use percentages for the widths of the items. On Nov 17, 9:28 am, Andy Matthews [EMAIL PROTECTED] wrote: Here's a version I've got using the kwicks plugin and divs nested inside the LI tags:

[jQuery] Re: Effect like Kwicks plugin

2008-11-17 Thread Karl Swedberg
Hi Andy, I don't see any reason why you couldn't use the Kwiks for jQuery plugin with something other than list items. Just remove the 'li' from the .children() method in line 28: var kwicks = container.children('li'); becomes var kwicks = container.children();

[jQuery] Re: Effect like Kwicks plugin

2008-11-17 Thread Andy Matthews
-en@googlegroups.com Subject: [jQuery] Re: Effect like Kwicks plugin Hi Andy, I don't see any reason why you couldn't use the Kwiks for jQuery plugin with something other than list items. Just remove the 'li' from the .children() method in line 28: var kwicks = container.children('li'); becomes