I am using 'Uploadify' JQuery plugin for file upload. I read the documentation and referred examples and attached the code in my file. Everything works well except that after uploading the file, the file name just disappears. You can find the documentation here.
The documentation says about "onComplete" option, but I am not following how to implement below:
<input id="btnBrowse" name="btnBrowse" type="button" value="Browse"/>
<script type="text/javascript">// <![CDATA[
$(document).ready(function() {
$('#btnBrowse').uploadify({
'uploader' : '../Lib/uploadify.swf',
'script' : '../Lib/uploadify.php',
'cancelImg' : '../Lib/cancel.png',
'auto' : true,
'folder' : '../../upload'
});
});
// ]]></script>
I also want to show the message that file successfully uploaded.
Please assist.