It looks like you're new here. If you want to get involved, click one of these buttons!
$(document).ready(function() {
$("#uploadifyRestaurant").uploadify
({
'uploader' : 'scripts/uploadify.swf',
'script' : 'scripts/uploadify.php',
'cancelImg' : 'Images/cancel.png',
'folder' : 'uploads',
'multi' : false,
'scriptData' : {'restaurant_id':$restaurantId},
'onAllComplete' : function(event, data)
{ },
'onComplete': function(event, queueID, fileObj, response, data)
{
$test = "pictures/restaurantpictureupload.php/?fileName=" + fileObj.name;
window.location.replace($test);
}
});
});