Side navigation
#2952 closed bug (invalid)
Opened May 29, 2008 12:54PM UTC
Closed October 12, 2009 11:32PM UTC
jquery.form.js have error in IE with a file-form
Reported by: | fuksito | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.3 |
Component: | plugin | Version: | 1.2.5 |
Keywords: | form ajaxSubmit | Cc: | |
Blocked by: | Blocking: |
Description
When trying to use jquery.form.js with function ajaxSubmit to post some form with file there is an error that crashes all submiting. These error is only reprodused in IE (6, 7, 8) and jquery 1.2.4 and greatier (all is ok in 1.2.3).
The error is:
"Breaking on JScript runtime error - Object doesn't this property or method"
And also it says that these error is on line 1071 of jquery.js
The line 1071:
"elem[ name ] = value;"
Also here is html for a file with wich you can reproduce these bug:
<script type="text/javascript" src="jquery-1.2.6.js"></script>
<script type="text/javascript" src="jquery.form.js"></script>
<script type="text/javascript">
$(document).ready( function(){
});
function submit_new_avatar(form) {
$("#cont").html('prepare');
var options = {
beforeSubmit: validate_form,
success: success_new_avatar,
error: submitError,
dataType: 'json'
};
$(form).ajaxSubmit(options);
return false;
}
function validate_form (){
$("#cont").append("<br>started");
}
function submitError (){
$("#cont").append('<br>error');
}
function success_new_avatar (data) {
$("#cont").append("<br>ended");
}
</script>
<body>
<form onsubmit="return submit_new_avatar(this);" id="new_avatar_form" method="post" enctype="multipart/form-data" action="/main.fcgi">
<input type='hidden' name='action' value='save_new_avatar' />
<table class="form">
<tr>
<td class="left"></td>
<td class="right">Choose picture:<br /><input type="file" name="file1" /></td>
</tr>
</table>
<input type="submit" value=" Upload " /><input type="reset" value="Cancel" />
</form>
<div id="cont"></div>
</body>
Attachments (1)
Change History (4)
Changed June 16, 2008 08:29PM UTC by comment:1
Changed August 29, 2008 07:35PM UTC by comment:3
I found the thing that made an error. It was becouse I had input with name=action, without input with such name all goes ok, don't know why but obly this name of input makes an error.
Changed October 12, 2009 11:32PM UTC by comment:4
resolution: | → invalid |
---|---|
status: | new → closed |
This is not a jQuery core bug. Please report plugin bugs to the plugin's author, or ask on the jQuery forums. jQuery UI bugs should be reported on the UI bug tracker, http://dev.jqueryui.com .
Maybe similar to #3052