[jquery-dev] Re: Form selector doesn't work

2009-08-25 Thread Elijah Insua
Gabejazz, >From what I understand, it looks like you have a form that looks like: If not, then I think this might be a problem with the code provided. Please try what Rick Waldron suggested, as it may give you a better perspective into the problem. Beware though, you will need Firefox a

[jquery-dev] Re: $.getJSON problem with json parameter

2009-08-25 Thread Rodrigo Pinto
Hello Irbabe, thanks a lot. 2009/8/25 lrbabe > > Hello Rodrigo, > > This is the group for questions related to the development of the > library itself rather than how to use it. > You have more chances to get an answer if you post on the appropriate > group: http://groups.google.com/group/jquer

[jquery-dev] Re: $.getJSON problem with json parameter

2009-08-25 Thread lrbabe
Hello Rodrigo, This is the group for questions related to the development of the library itself rather than how to use it. You have more chances to get an answer if you post on the appropriate group: http://groups.google.com/group/jquery-en While you're here, according to the documentation of $.

[jquery-dev] Re: Form selector doesn't work

2009-08-25 Thread Rick Waldron
Have you tried something simple like giving the an id/name and observing that? $('#form-id').submit(function () { console.log(this); return false; }); ? Rick On Tue, Aug 25, 2009 at 5:16 PM, Gabejazz wrote: > > When I execute this: > > 1. var myForm = $("form"); > 2. myForm.submit(

[jquery-dev] $.getJSON problem with json parameter

2009-08-25 Thread Rodrigo Pinto
Hi. I'm trying to use function $.getJSON with JSON parameter, but it not work "100%". i.e.: $.getJSON( "", { parent: { child: value } }, callbackFunction ); , and my variable parent.child wasn't populated. After these test i try to use only " { child: value } ", and then it work corretly. Wh

[jquery-dev] slideToggle jumpy at end (even with padding: 0)

2009-08-25 Thread plong0
Hello, So I'm working with a pretty simple list of div's. Each div has an h2, and at least one paragraph, plus a hidden span, and a "show more" link that slideToggle()'s the hidden span when clicked. The problem I'm having is that the hidden span appears to jump a few pixels near the end of the

[jquery-dev] Form selector doesn't work

2009-08-25 Thread Gabejazz
When I execute this: 1. var myForm = $("form"); 2. myForm.submit(function() { 3. var self = $(this); 4. self.children("[name='action']").val("doSomething"); 5. 6. return true; 7. }); And then I debug it, doesn't pass beyond line 1. Recognize all kind of selectors except when I mat

[jquery-dev] trigger("submit") failing in firefox with nightly

2009-08-25 Thread mike.helgeson
Trigger succeeds (1.3.2): http://jsbin.com/ixege Trigger fails (nightly): http://jsbin.com/owisi (Firefox 3.5.2/Vista) http://dev.jquery.com/ticket/5124 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "jQuery Devel

[jquery-dev] Re: jquery ajax/load event on div drop

2009-08-25 Thread mike.helgeson
This list is for discussions related to the development of the jquery core library. Your question is related to drag/drop special events and should be directed here: http://groups.google.com/group/threedubmedia/topics I would also recommend reading any documentation that is available (use "even

[jquery-dev] jquery ajax/load event on div drop

2009-08-25 Thread Enoch
Hello, I am trying to load a php page into DIV B when DIV A is dropped on it. My question is: how do I pass a variable with my jquery load. this is what I have: .bind( "drop", function( event ){ $( this ).load("somefile.php?rec="+event.dragDiv.title+""); } everything works fine when I

[jquery-dev] Re: window resize

2009-08-25 Thread lrbabe
You're welcome. Being an abstraction library, I'm acually wondering if jQuery should handle that itself. Otherwise the resize event is not really useful... Regards, lrbabe On Aug 24, 10:38 pm, drupalwanderer wrote: > Oh thank you SO MUCH , and very sorry to have posted in the wrong > spot. >