Uploadify – A php-flash library to make upload simple
Here is a simple jQuery plugin for creating flash based file uploader.
Look some demo here.
Include the js file and run the following script to make a file input to flash uploader
<script type="text/javascript">// <![CDATA[
$(document).ready(function() {
$('#fileInput').uploadify({
'uploader' : 'uploadify.swf',
'script' : 'uploadify.php',
'cancelImg' : 'cancel.png',
'auto' : true,
'folder' : '/uploads'
});
});
// ]]></script>
– Power to jQuery



I tried testing the demo in Firefox. It is showing IO error. The same problem persists in my site. Is it a browser issue or is it a issue with uploadify library. Please suggest.