[jQuery] Re: jQuery Powered Sites - Keep the Links Coming

2007-03-31 Thread bingo
hi, I am using jquery and CakePHP for my bibliography management website..you can access it here..www.geovista.psu.edu/memento.. you can try username/password as demo/demo Regards, Ritesh On Feb 9, 10:42 am, [EMAIL PROTECTED] (Andy Matthews) wrote: > Just curious...how are you guys finding out

[jQuery] need suggestions on ajax

2007-03-31 Thread bingo
Hi, I am having some trouble with ajax and jquery... I have my default webpage template and in that I have defined my javascript as shown below $(document).ready(function(){ $('.loadContent').click(function(){ url = $(this).attr('href'); $("div#content").

[jQuery] Interface Library - What order is it built in? / bug in IE7 Draggable revert

2007-03-31 Thread Dan G. Switzer, II
I'm resending this, since I didn't hear back. I thought maybe it got lost in the shuffle to move to the new list. -- I found an issue in the idrag.js file on line 135 of idrag.js file. This lines: if (elm.dr

[jQuery] Re: Callback of AJAX call must determine what happens after the AJAX call... how?!? (form plugin)

2007-03-31 Thread Erik Beeson
I think your design is poor. The problem is you shouldn't be trying to "inject" an ajax call in the beforeSubmit callback. I suggest one of two things: at the point of making a request to the server, why not just do the validation step on the server side? Calling out to the server to find out if

[jQuery] Re: Callback of AJAX call must determine what happens after the AJAX call... how?!? (form plugin)

2007-03-31 Thread Matt Stith
I would create 2 functions, like if (result == 'validation succeeded') { someSuccessFunction(); return; } someFailFunction(); return; } On 3/31/07, tawm <[EMAIL PROTECTED]> wrote: Hello people, I'm in a situation right now in which I do an AJAX call, supplying it a callback fun

[jQuery] Re: How to select all but one

2007-03-31 Thread joomlafreak
My apologies! it works as i wanted and as you thought it should. thank you so very much, have a good weekend. On Mar 31, 9:13 pm, "joomlafreak" <[EMAIL PROTECTED]> wrote: > thank you for your prompt reply. the code you wrote does work but only > partly. I mean the first animate for other divs wo

[jQuery] Re: How to select all but one

2007-03-31 Thread Matt Stith
thats weird :-\ try switching the order around, eg do the $(this) one first, then $(.test). Thats all i can think, if that doesnt work, then i have no idea :P On 3/31/07, joomlafreak <[EMAIL PROTECTED]> wrote: thank you for your prompt reply. the code you wrote does work but only partly. I m

[jQuery] Re: How to select all but one

2007-03-31 Thread joomlafreak
thank you for your prompt reply. the code you wrote does work but only partly. I mean the first animate for other divs works on other divs but the next animate instead of working only on the clicked div, also works on all three divs. Thanks again On Mar 31, 9:02 pm, "Matt Stith" <[EMAIL PROTECTE

[jQuery] Callback of AJAX call must determine what happens after the AJAX call... how?!? (form plugin)

2007-03-31 Thread tawm
Hello people, I'm in a situation right now in which I do an AJAX call, supplying it a callback function (for success). In this callback function I do some operations which determine what happens after the AJAX call. Normally you would solve this by calling yet another callback function at the end

[jQuery] Re: How to select all but one

2007-03-31 Thread Matt Stith
Try out .not, like: $('.test').click(function(){ $('.test').not(this).animate(ANIMATION_FOR_OTHERS); $(this).animate({left:'0'},'slow'); }); On 3/31/07, joomlafreak <[EMAIL PROTECTED]> wrote: I am not a programmer by profession, but a surgeon and doing a lil bit of programming is my h

[jQuery] How to select all but one

2007-03-31 Thread joomlafreak
I am not a programmer by profession, but a surgeon and doing a lil bit of programming is my hobby. Ok, my question is how do I select and apply function etc to all but one element. For example I have 3 divs with a class test. Each of these have an individual id, say itemId1,itemId2,itemId3. Now I

[jQuery] Re: Moving to Google Groups (Finally)

2007-03-31 Thread Dan Atkinson
Welcome all to the new group! A very nice layout indeed!

[jQuery] Re: My first plugin, overlabel

2007-03-31 Thread Erik Beeson
Reminds me of this: http://www.bash.org/?4278 On 3/31/07, John Resig <[EMAIL PROTECTED]> wrote: > (Am I the first one on the new list?! Do I win a prize?) You are! You win the internets!

[jQuery] Re: Moving to Google Groups (Finally)

2007-03-31 Thread Kenneth
Just a test, please ignore. On 3/31/07, John Resig <[EMAIL PROTECTED]> wrote: Trans - I think you can just remove it. The new list (jquery-en) has the entire message history in it, so that will make things easier for everyone. If you want, you can email me the user list (jeresig at gmail.com

[jQuery] Re: Moving to Google Groups (Finally)

2007-03-31 Thread John Resig
Trans - I think you can just remove it. The new list (jquery-en) has the entire message history in it, so that will make things easier for everyone. If you want, you can email me the user list (jeresig at gmail.com) and I'll import everyone into the new list (so that no one is lost in the proce

[jQuery] Re: Moving to Google Groups (Finally)

2007-03-31 Thread Karl Swedberg
Thanks a lot for all your work on getting us moved over to Google Groups! I know it took a lot longer than you had expected it to, but I think I can speak for all of us when I say that we really appreciate all the time and effort you took in making it happen. Cheers, --Karl ___

[jQuery] Re: Moving to Google Groups (Finally)

2007-03-31 Thread Trans
On Mar 31, 6:12 pm, "John Resig" <[EMAIL PROTECTED]> wrote: > Hey Everyone - > > Google has finally imported all of the users into the new jQuery > Google Group. From now on, all messages should be going to the group > directly instead of the old mailing list ([EMAIL PROTECTED]). > > Important i

[jQuery] Re: My first plugin, overlabel

2007-03-31 Thread John Resig
> (Am I the first one on the new list?! Do I win a prize?) You are! You win the internets!

[jQuery] Re: Moving to Google Groups (Finally)

2007-03-31 Thread John Resig
I'm posting this directly to the group now - everyone's email addresses should be moved over, and all subscription settings should have been maintained. I see that there's already been a post to the list, so it appears as if everything is working (yay!) --John On Mar 31, 6:12 pm, "John Resig" <

[jQuery] Re: My first plugin, overlabel

2007-03-31 Thread Scott Sauyet
(Am I the first one on the new list?! Do I win a prize?) >> == Scott Sauyet > == Matt Stith >> I'm fairly new to JQuery. I recently needed a technique I had seen >> recently on A List Apart to combine labels and text input boxes into >> a single control in order to save space. The technique