Ignore file inputs when serializing forms. File input serialization is handled by plugins. Fixes #13306.

This commit is contained in:
Timmy Willison
2013-01-23 12:21:48 -05:00
parent bb1d148345
commit 21af3a9213
2 changed files with 4 additions and 3 deletions

View File

@@ -112,8 +112,9 @@ test("serialize()", function() {
// Add html5 elements only for serialize because selector can't yet find them on non-html5 browsers
jQuery("#search").after(
"<input type='email' id='html5email' name='email' value='dave@jquery.com' />"+
"<input type='number' id='html5number' name='number' value='43' />"
"<input type='email' id='html5email' name='email' value='dave@jquery.com' />" +
"<input type='number' id='html5number' name='number' value='43' />" +
"<input type='file' name='fileupload' />"
);
equal( jQuery("#form").serialize(),