Search code examples
jqueryuploadify

How to change the uploadify image


I am using uploadify for file upload in asp.net. I want to change the file upload name. the default text is browse I want to change it to Audio upload. How can I change the text inside the upload file.

<script type = "text/javascript">
        $(document).ready(function () {
            $("#<%=FileUpload1.ClientID%>").uploadify({
                'uploader': 'scripts/uploadify.swf',
                'script': 'Upload.ashx',
                'cancelImg': 'images/cancel.png',
                'folder': 'uploads',
                'multi': true,
                'auto': true
            });
        });     
</script> 

Solution

  • If you mean you want to rename the button to something else, then you could use uploadifySettings. Ref: uploadifySettings Or see here Hope it helps