It looks like you're new here. If you want to get involved, click one of these buttons!
$(document).ready(function(){
$('#fileInput').uploadify({
'auto' : true,
'multi' : true,
'folder' : '/plugins/_gallery/_tmp',
'script' : 'index.php',
'scriptData' : {'mod': '_gallery', 'do':'add', '_action':'m_upload'},
'fileExt' : '*.jpg; *.jpeg; *.gif; *.png',
'fileDesc' : 'Images (jpg, gif, png)',
'queueID' : 'fileQueue',
'onComplete' : function(event, queueID, fileObj, response, data){
console.log(fileObj.filePath+' response: '+response);
}
});
});