Skip to main content

Bug Tracker

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)
  • ie.html (1.2 KB) - added by fuksito May 29, 2008 12:54PM UTC.
Change History (4)

Changed June 16, 2008 08:29PM UTC by fil comment:1

Maybe similar to #3052

Changed August 29, 2008 12:58PM UTC by fuksito comment:2

No, the problem is still with patch from #3052

Changed August 29, 2008 07:35PM UTC by fuksito 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 dmethvin comment:4

resolution: → invalid
status: newclosed

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 .