Forum Moderators: open
<?php
$uploaddir = '../folder/newfolder/';
?>
.bind('uploadSuccess', function(event, file, serverData){
var item=$('#log li#'+file.id);
item.find('div.progress').css('width', '100%');
item.find('span.progressvalue').text('100%');
var pathtofile='<a href="../$uploaddir/'+file.name+'" target="_blank" >view upload file »</a>';
item.addClass('success').find('p.status').html('Done! | '+pathtofile);
})