Click here to Skip to main content
15,892,697 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
File Upload:
This application.js. file..

/*
* jQuery File Upload Plugin JS Example 5.0.2
* https://github.com/blueimp/jQuery-File-Upload
*
* Copyright 2010, Sebastian Tschan
* https://blueimp.net
*
* Licensed under the MIT license:
* http://creativecommons.org/licenses/MIT/
*/

/*jslint nomen: true */
/*global $ */

$(function() {
    'use strict';

    // Initialize the jQuery File Upload widget:
    $('#fileupload').fileupload();

    // Load existing files:
    $.getJSON($('#fileupload form').prop('action'), function(files) {
        var fu = $('#fileupload').data('fileupload');
        fu._adjustMaxNumberOfFiles(-files.length);
        fu._renderDownload(files)       
            .appendTo($('#fileupload .files'))
            .fadeIn(function() {
                // Fix for IE7 and lower:
                $(this).show();
            });
    });

    // Open download dialogs via iframes,
    // to prevent aborting current uploads:
    $('#fileupload .files a:not([target^=_blank])').live('click', function(e) {
        e.preventDefault();
        $('<iframe style="display:none;"></iframe>')
            .prop('src', this.href)
            .appendTo('body');
    });

});


This error in Mutiple upload files in asp.net with jquery.
XML
Uncaught TypeError: Object #<Object> has no method 'fileupload' application.js:19
(anonymous function) application.js:19
e.resolveWith jquery.min.js:16
e.extend.ready jquery.min.js:16
c.addEventListener.z


Please say correct solution Friends!
 
Advance Thanks Friends!
Posted

1 solution

see this link may be help you

[
http://blueimp.github.io/jQuery-File-Upload/[^]
]
 
Share this answer
 
Comments
Rekhash 16-Apr-13 3:42am    
@PRAKASH9 i implement already. It's showing Same error
Shubhashish_Mandal 7-May-13 2:47am    
I think its jquery conflict related issue.Use noConflict() to resolve which jQuery gets access to the $ variable.or remove the js which is conflict.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900