Re: [jQuery] window plugin: update

2006-11-15 Thread Dan Atkinson
Gilles, Is there any new information about this? Webunity | Gilles van den Hoven wrote: Hi Guys, You've probaly seen the Ajaxian post on the YUI dialog. Well i am happy to report that i've almost completed my plugin (after i released cssHover i did a complete rewrite) and it offers

Re: [jQuery] window plugin: update

2006-11-15 Thread Christopher Jordan
Gilles, I really appreciate the hard work you're putting into this plug-in. It sounds like it's gonna be awesome! I too would love to know the status of the plug-in. :o) Chris Dan Atkinson wrote: Gilles, Is there any new information about this? Webunity | Gilles van den Hoven wrote:

[jQuery] window plugin: update

2006-11-07 Thread Webunity | Gilles van den Hoven
Hi Guys, You've probaly seen the Ajaxian post on the YUI dialog. Well i am happy to report that i've almost completed my plugin (after i released cssHover i did a complete rewrite) and it offers almost thesame functionality as the YUI version: * Fully themable * Fully customizable (e.g.

Re: [jQuery] window plugin: update

2006-11-07 Thread Reynier Perez Mira
| Gilles van den Hoven Enviado el: 07 November, 2006 10:02 AM Para: jQuery Discussion. Asunto: [jQuery] window plugin: update Hi Guys, You've probaly seen the Ajaxian post on the YUI dialog. Well i am happy to report that i've almost completed my plugin (after i released cssHover i did

Re: [jQuery] window plugin: update

2006-11-07 Thread Rey Bango
Man I can't wait! Webunity | Gilles van den Hoven wrote: Hi Guys, You've probaly seen the Ajaxian post on the YUI dialog. Well i am happy to report that i've almost completed my plugin (after i released cssHover i did a complete rewrite) and it offers almost thesame functionality as the

Re: [jQuery] window plugin: update

2006-11-07 Thread Webunity | Gilles van den Hoven
Reynier Perez Mira wrote: Hi Gilles: Thanks a lot for this plugin but where I can download it and see documentation in how to use in my site? Cheers Not yet, it is 98% finished :) -- Gilles ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] window plugin: update

2006-11-07 Thread Reynier Perez Mira
November, 2006 10:14 AM Para: jQuery Discussion. Asunto: Re: [jQuery] window plugin: update Reynier Perez Mira wrote: Hi Gilles: Thanks a lot for this plugin but where I can download it and see documentation in how to use in my site? Cheers Not yet, it is 98% finished :) -- Gilles

Re: [jQuery] window plugin: update

2006-11-07 Thread Dave Methvin
* Callbacks: onOpen, onLoad Instead of callbacks, consider custom events. It easily allows for multiple subscribers to the event, and you can chain the query to bind the events. It also loosens the coupling between objects. $(#mywin).makeWindow( ... ).bind(open, function(){ ... });

Re: [jQuery] window plugin: update

2006-11-07 Thread Webunity | Gilles van den Hoven
Dave Methvin wrote: * Callbacks: onOpen, onLoad Instead of callbacks, consider custom events. It easily allows for multiple subscribers to the event, and you can chain the query to bind the events. It also loosens the coupling between objects. If you don't mind, i'll wait with that