It looks like you're new here. If you want to get involved, click one of these buttons!
$("#uploadify").uploadify({
'uploader' : 'swf/uploadify.swf',
'script' : 'project_docs_upload.php',
'cancelImg' : 'img/uploadify-cancel.png',
'queueID' : 'fileQueue',
'auto' : false,
'multi' : true,
'removeCompleted' : true,
'buttonText' : 'Select Files',
'sizeLimit' : 1073741824,
'onSelect' : function (){
$('#start-upload-link').show();
$('#cancel-upload-link').show();
},
'onCancel' : function (){
$('#start-upload-link').hide();
$('#cancel-upload-link').hide();
},
'onAllComplete' : function(event,data){
//alert(data.errors+','+data.allBytesLoaded +','+data.speed );
},
'onComplete' : function (event, queueID, fileObj, response, data) {
var h=eval('(' + response + ')');
'onError' : function (event, queueID, fileObj,errorObj) {
//a=$('#project_docs_list').html();
//$('#project_docs_list').html(a + fileObj.name+','+errorObj.type + ',' +errorObj.info+ '<br/>');
}
});