[jQuery] Re: Comet

2008-01-09 Thread Karl Delandsheere
Great, I've been doing some Comet last year for a project. It's great but really geeky for some people, so developping a plugin around that sounds just great to me :). I'll check the work asap! On Jan 9, 3:01 am, "Morgan Allen" <[EMAIL PROTECTED]> wrote: > I have been working on implementing the

[jQuery] Re: Does jQuery script has to be in one physical place?

2007-12-29 Thread Karl Delandsheere
I think you can inject it. But I didn't try yet. When you do Comet, you inject Javascript, why with Ajax wouldn't we do the same? ^^ Anyway, it would make your data transfer heavier, wouldn't it? On Dec 29, 1:42 am, henry <[EMAIL PROTECTED]> wrote: > I usually have my jQuery code near the end o

[jQuery] Re: Firefox uncaught exception - Please help

2007-12-27 Thread Karl Delandsheere
"I prefer to use Firefox, but for the time being I will have recommend to users to use internet explorer. Bill " Haha... Bill... Gates? :D I have the same problem... Sometimes... I didn't get any answer yet. Wait and see :). And remember... Do not choose the dark side. It is easier, but much l

[jQuery] Re: general unique id for new append element

2007-12-24 Thread Karl Delandsheere
Bah... Test if there's something in a document.getElementById( your_id ). If there is, choose another id, if not, go on. No? On Dec 24, 12:18 am, Guy Fraser <[EMAIL PROTECTED]> wrote: > > On Dec 23, 5:09 am, dn2965 <[EMAIL PROTECTED]> wrote: > > >> hello everyone > >> i want to know a way to g

[jQuery] Re: general unique id for new append element

2007-12-23 Thread Karl Delandsheere
I'm not sure to understand your question but... If you want to generate the id attribute, you can use .attr('id', your_unique_id ) Is that what you were looking for? :) On Dec 23, 5:09 am, dn2965 <[EMAIL PROTECTED]> wrote: > hello everyone > i want to know a way to general unique id for new ap

[jQuery] Re: Interface droppables versus UI Droppables

2007-12-21 Thread Karl Delandsheere
take a look > > at it: > > >http://dev.jquery.com/newticket > > > Thanks. > > > - Richard > > > On Dec 19, 2007 6:11 AM, Karl Delandsheere <[EMAIL PROTECTED]> > > wrote: > > > > Hi! > > > > I'm moving a project f

[jQuery] Interface droppables versus UI Droppables

2007-12-19 Thread Karl Delandsheere
Hi! I'm moving a project from Interface to UI. When it was working with Interface, I used to call ".recallDroppable" when the DOM was modified (display new droppables and so on) while dragging. The comment of ".recallDroppable" is to the point :D... "* useful when the positions/dimensions for

[jQuery] Re: Select the parent of current element!

2007-12-16 Thread Karl Delandsheere
Hi! Did you try this: $(document).ready(function () { $("input.saveButton").click(function () { var parent = this.parentNode; alert(parent); }); }); And if you want to get the jQuery object, $(this.parentNode). Anyway, you have the "parents()" method. Hope that I help

[jQuery] Nested Lists and Droppable : issues at "over" event

2007-12-14 Thread Karl Delandsheere
Hello everybody! I'm building an application quite similar to the Mac OSX Finder with a massive help from jQuery. I've done a lot yet but I'm having some trouble handling the droppable event. Let's see what's in there : I have some nested lists like this example :