I run serialize on a form, where on of the fields is hidden - and it's a very important field, which should be posted. Is there any way to easily serialize it through jQuery or should I write my own function?
|
Serialize does include all enabled |
|||||||||||||
|
|
Maybe combining the two in a single selector would work?
edit: I just tried the above and it worked. but, $("form").serialize(); should automatically take all inputs as others have mentioned. |
||||
|
|
|
Here's a weird variation on this problem. The hidden fields have names.
Correctly pops up a window with all of the hidden fields. But
Does not have the hidden fields. When the php script does |
|||
|
|
|
Just ran into this problem myself, and hacked out a solution. The problem has to do with the way JQuery picks up hidden html information. It will not pick up the TEXT of a hidden field as its value, you must use the value= property. To set it in JQUERY use |
||||
|
|
serializeshould include hidden fields. Can we see the markup and script? – VoteyDisciple Aug 14 '09 at 13:27nameattribute, I would guess. – Josh Stodola Aug 14 '09 at 14:50