JQuery and form attributes change in IE
- by bounce
Hi,
I want to change form attributes with JQuery. In other browsers
it works fine, but not in IE(6,7,8).
Code:
action = '/controller/action/id/';
target = 'upload_iframe';
enctype = 'multipart/form-data';
$('#form1').attr("action",action);
$('#form1').attr("target",target);
$('#form1').attr("enctype",enctype);
So what's the problem ? Your help would be appreciated.