ユーザーが自分の Web サイトにファイルをアップロードできるようにするために、uploadify プラグインを使用しています。スクリプトは chrome では問題なく動作しますが、ie と firefox では動作しません
$(function() {
$('#file_upload').uploadify({
'checkExisting' : 'check-exists.php',
'buttonText' : 'Select project',
'fileSizeLimit' : '163840KB',
'fileTypeDesc' : 'Image Files',
'fileTypeExts' : '*.zip; *.rar',
'swf' : 'uploadify.swf',
'uploader' : 'uploadify.php',
'onUploadError' : function(file, errorCode, errorMsg, errorString) {
$("input[type=submit]").attr("disabled", "disabled");
alert('The file ' + file.name + ' could not be uploaded: ' + errorString);
},
'onUploadSuccess' : function(file, data, response) {
$("input[type=submit]").removeAttr("disabled");
},
});
助言がありますか :)