[jQuery] Re: Form plugin: input elements excluded

2009-04-27 Thread dth
27, 11:11 am, dth wrote: > According to firebug not much is altered, and the fields should be > included in the form as far as I can tell. But they aren't :/

[jQuery] Re: Form plugin: input elements excluded

2009-04-27 Thread dth
they aren't :/ Thanks, -dennis On Apr 26, 2:13 pm, dth wrote: > As far as I can tell they should all be just fine. If I disable the > jquery-ui-dialog and just display the fields (in tabs) in the page, > they work just fine. > > So it must be caused by the dialog plugin some

[jQuery] Re: Form plugin: input elements excluded

2009-04-26 Thread dth
As far as I can tell they should all be just fine. If I disable the jquery-ui-dialog and just display the fields (in tabs) in the page, they work just fine. So it must be caused by the dialog plugin somehow. I have text inoput fields and checkboxes. They all have names. None are disabled (unless

[jQuery] Form plugin: input elements excluded

2009-04-26 Thread dth
Hi, I'm using the form plugin to submit a form by ajax. But oddly some of my form fields aren't included in the form. As far as I can tell by debugging, the elements are found by the browsers form.elements property. I don't know why some of the form input elements aren't included but it seems t

[jQuery] Re: Removing anonymous element

2009-04-22 Thread dth
ouldn't. there is parent() and parents(). > > I use that exact code for a tag system that i created. I'd link you to > > it... but it's not public yet. The code is exact, the properties > > changed are different. > > > On Apr 22, 6:40 am, dth

[jQuery] Re: Removing anonymous element

2009-04-22 Thread dth
As far as I can see, that would remove my element as well as all of it's siblings? -dennis On 22 Apr., 13:36, Daniel wrote: > var.parent().remove() should do the trick i think?

[jQuery] Removing anonymous element

2009-04-22 Thread dth
Hi, I have a jquery array with an element in it. I'd like to remove this element from the DOM, but can't see how. If I use var.remove() it removes all children but not the element itself. I cannot think of any way to specify this very element in a selector either, as it can have various placeme

[jQuery] Re: jquery form plugin problem

2009-03-29 Thread dth
On 29 Mar., 02:46, Mike Alsup wrote: > Well there must be more to the story than what you're telling us.  The > code you've shown above looks fine.  Perhaps there is a problem with > the json response. Actually that was excactly the problem. It would be good to get some kind of notification thou

[jQuery] jquery form plugin problem

2009-03-28 Thread dth
Hi, I'm trying to use the form plugin from malsup.org to submit a form with ajax, but it does not seem to work with options. This works: $("#loginform").ajaxSubmit(function(obj, statusText) { alert(obj);

[jQuery] jquery form plugin problem

2009-03-28 Thread dth
Hi, I'm having a problem with the jquery (ajax) form plugin. It says on the page (malsup.com) to seek help here :) When I invoke ajaxSubmit() with a function it is called on success. But when I invoke ajaxSubmit() with a Options object with success: function() {..} the function is not invoked. A

[jQuery] jquery form plugin problem

2009-03-28 Thread dth
Hi, I'm trying to use the form plugin from malsup.org to submit a form with ajax, but it does not seem to work with options. This works: $("#loginform").ajaxSubmit(function(obj, statusText) { alert(obj);