[jQuery] Re: Ajax/Drag and Drop question

2009-02-05 Thread Tbone
Hi, What I had to do to get that to work(doing exactly what you are doing), was once the new content was loaded from the AJAX call, destroy and "re-drag" the loaded divs... Something like this $ajax... success: ..somestuff... ..load new content... $('.classname').draggable('destroy');

[jQuery] "After the fact" tooltip application problem

2009-02-05 Thread Tbone
I have a page where I'm using tooltip that is dynamically constructed with $AJAX calls. The static content gets tooltip initialization just fine, but I'm having trouble with content added after initial load. The first call to tooltip after page load: function setFactoryTooltip() { $('.factor

[jQuery] Re: insert div into group ordered by ID..

2008-12-22 Thread Tbone
x27;).each(function(){ >                                 if ($(this).attr('id') > 'delta') >                                         $(this).before(''); >                 }); > > I think there is no selector that will do the same, but  I may be > wrong. > O

[jQuery] Re: insert div into group ordered by ID..

2008-12-22 Thread Tbone
Use it like: > > > > > > > > > $('').insertInOrder('#group'); > > feel free to change the naming and alter the code :] > > cheers, > - ricardo > > On Dec 22, 3:32 pm, Tbone <95dak...@gmail.com> wrote: > > > Great! Thanks

[jQuery] Re: insert div into group ordered by ID..

2008-12-22 Thread Tbone
Great! Thanks... However, I'm more clueless than I should be...and didn't pose the complete question... I have the divs as shown above, how do I locate where would go? Obviously between gamma and epsilon, but I need to search the ids for the first (id > "delta"). Then I can use your insert to p

[jQuery] insert div into group ordered by ID..

2008-12-22 Thread Tbone
I'm a relative newbie with jQuery and have read the doc about DOM manipulation but am too dense to answer this question: I have a series of DIVs in order by ID. I would like to insert a new DIV into its proper place in the order... Given the following: How would I be able to insert the f

[jQuery] Re: IE problems with jQuery

2008-11-19 Thread Tbone
The extra comma was indeed the problem!! Thanks much Mike!! On Nov 18, 5:01 am, Mike Alsup <[EMAIL PROTECTED]> wrote: > [ 1, 2, 3, ]  // IE chokes on the last comma > > Mike

[jQuery] IE problems with jQuery

2008-11-18 Thread Tbone
} logWrite("E",errmsg); } }); } === The "GET" call is being made, the problem seems to be in the "success" processing. DebugBar pops up a message: Line: 3 Character: 1 Code: 0 Error Message: Syntax error URL: http://ganymede/ This isn't very helpful as in Line 3 of what??/ Any explanations for a dumb newbie? Thanks, Tbone