Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<form id="lol" method="post" action="?" zidprofile="210" zmarked="true"  referer="http://yahoo.com/">
   <input type="text" name="age" value="22" />
   <input type="text" name="name" value="Jhon" ztarget="415" />
   <input type="text" name="mail" value="test@gmail.com" zcodeg="inner" />
   <input type="submit">
</form>

When form submited print this:

Array (
  [age] => 22,
  [name] => Jhon,
  [mail] => test@gmail.com
)

But Jquery and serialize return only:

alert($('#lol').serialize()); // age=22

And:

$('input[zcodeg="inner"]').each(function(){
  alert($(this).attr('name'));
});

Work!, alert: "mail"

What happen?

share|improve this question
1  
Please show your call to serialize(). – Grant Thomas Mar 1 '12 at 15:52
alert($('#lol').serialize()); // age=22 – user1243068 Mar 1 '12 at 15:54
maybe serialize() dont like your custom attributes of the input elements? – ggzone Mar 1 '12 at 15:54
I do not know :( – user1243068 Mar 1 '12 at 15:57
then take it out and test it without your custom attributes !?!? – ggzone Mar 1 '12 at 15:58
show 4 more comments

1 Answer

up vote 0 down vote accepted

it seems serialize() does not support custom attributes in input fields however... take them out and use common attributes like rel="" or if your using HTML5 you may wanna use the data- attribute. maybe it works with this attributes

share|improve this answer
need more attributes, 5 extra attributes aprox for each input. I use html5 but visitors use ie8. – user1243068 Mar 1 '12 at 16:17
1  
@user1243068 what's using IE8 got to do with your use of, and this problem with custom attributes? HTML is a mark-up language, IE is a browser... – Grant Thomas Mar 1 '12 at 16:20
as you using HTML 5 its no problem to use data-yxz attributes... for no browser... and maybe serialize() accepting them more then invalid attributes – ggzone Mar 1 '12 at 16:24
1  
The problem is that before submitting the form apply all inputs are disabled: $ (formOb.find('input').each(function(){ $(this).attr('disabled', true); }); jquery not process inputs disabled :) Sorry and thanks. – user1243068 Mar 1 '12 at 17:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.