jQuery File Upload error parseMetaData

-1

Today in the morning the jquery File Upload stopped working in all places I use, I have a local base and another online, but both have the same error:   Uncaught TypeError: Can not read property 'parseMetaData' of undefined jquery.fileupload-image.js: 262

I tried to download it from the site: link

But until the last version that is available download presenting the same problem, would anyone know the reason? Any jquery files updated and stopped working?

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<!-- The jQuery UI widget factory, can be omitted if jQuery UI is already included -->
<script src="js/vendor/jquery.ui.widget.js"></script>
<!-- The Templates plugin is included to render the upload/download listings -->
<script src="http://blueimp.github.io/JavaScript-Templates/js/tmpl.min.js"></script><scriptsrc="js/load-image.min.js"></script>
<!-- The Load Image plugin is included for the preview images and image resizing functionality -->
<script src="http://blueimp.github.io/JavaScript-Load-Image/js/load-image.min.js"></script><!--TheCanvastoBlobpluginisincludedforimageresizingfunctionality--><scriptsrc="http://blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
<!-- Bootstrap JS is not required, but included for the responsive demo navigation -->
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<!-- blueimp Gallery script -->
<script src="http://blueimp.github.io/Gallery/js/jquery.blueimp-gallery.min.js"></script><!--TheIframeTransportisrequiredforbrowserswithoutsupportforXHRfileuploads--><scriptsrc="js/jquery.iframe-transport.js"></script>
<!-- The basic File Upload plugin -->
<script src="js/jquery.fileupload.js"></script>
<!-- The File Upload processing plugin -->
<script src="js/jquery.fileupload-process.js"></script>
<!-- The File Upload image preview & resize plugin -->
<script src="js/jquery.fileupload-image.js"></script>
<!-- The File Upload audio preview plugin -->
<script src="js/jquery.fileupload-audio.js"></script>
<!-- The File Upload video preview plugin -->
<script src="js/jquery.fileupload-video.js"></script>
<!-- The File Upload validation plugin -->
<script src="js/jquery.fileupload-validate.js"></script>
<!-- The File Upload user interface plugin -->
<script src="js/jquery.fileupload-ui.js"></script>
<!-- The main application script -->
<script src="js/main.js"></script>
    
asked by anonymous 15.09.2014 / 17:06

1 answer

1

Problem solved.

The problem was in the version of jquery. Just switch from version 1.11.0 to 1.11.1

example:

ajax.googleapis.com/ajax/libs/jquery/1.11.0

To:

ajax.googleapis.com/ajax/libs/jquery/1.11.1
    
15.09.2014 / 19:21