Question

I use uploadify plugin for uploading files.

But when I use

jQuery('#video_thumb1').uploadify('settings','uploadLimit','4');

to change the limit count, I get an error.

I cannot resolve this problem, whats this error?

Was it helpful?

Solution

Try this

$("#file_upload_1").uploadify({
    height:30,
    swf: 'http://www.uploadify.com/uploadify/uploadify.swf',
    uploader:'http://www.uploadify.com/uploadify/uploadify.php',
    width : 120,
    uploadLimit: 4
});

DEMO

OTHER TIPS

Try something like this:

jQuery('#video_thumb1').uploadify({
   'uploadLimit' : '4' // Or change to whatever number is appropriate.
});
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top