[jQuery] Re: Can't parse input from one form of many on page

2007-09-30 Thread Flesler
the hidden part won't match a thing, you should use :hidden instead, and anyway, the input part will match hiddens as well. On Sep 27, 6:28 pm, mo2g [EMAIL PROTECTED] wrote: I set up a quick function to parse the Parms array I get from this and it doesn't appear to work. Basically it is an

[jQuery] Re: Can't parse input from one form of many on page

2007-09-27 Thread Josh Nathanson
Try this: $('input,select,hidden', '#adminForm').each(function() { do stuff; } This says get all input, select, hidden elements in the context of #adminForm. -- Josh - Original Message - From: mo2g [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent:

[jQuery] Re: Can't parse input from one form of many on page

2007-09-27 Thread mo2g
Didn't work. I set up a function to parse the Params and show them in an alert. The results are blank when I add the #adminForm and show all the fields on the page when I remove it. Any other ideas? On Sep 27, 4:42 pm, Josh Nathanson [EMAIL PROTECTED] wrote: Try this:

[jQuery] Re: Can't parse input from one form of many on page

2007-09-27 Thread mo2g
I set up a quick function to parse the Parms array I get from this and it doesn't appear to work. Basically it is an empty set. Here is the URL of the page I am working on: http://www.glyfada.net/index.php?option=com_mtzcssearchItemid=46template=2 under the advanced search form in the center