UnknownPlayer Posted October 7, 2011 Share Posted October 7, 2011 I have this code: new AjaxUpload($('#upload-slike'), { action: SITE_URL+'sources/upload_sliku.php', name: 'uploadfile', maxlength: '2', onSubmit: function(file, ext){ if (! (ext && /^(jpg|png|jpeg|gif)$/.test(ext))){ $('#status').text('Only JPG, PNG or GIF files are allowed'); return false; } $('#status').html('<img src="'+SITE_URL+'images/loading.gif" />'); }, onComplete: function(file, response){ $('#status').text(''); if(response==="success"){ $('#slike').append('<li><a href="'+SITE_URL+'slike/'+file+'">'+file+'</a></li>'); } else{ $('#slike').append('Nije dodata').addClass('upozorenje'); } } }); Now i need to set limit only for 5 images tobe uploaded, how can i do that ? In attachment is js file.. [attachment deleted by admin] Quote Link to comment https://forums.phpfreaks.com/topic/248667-upload-image-limit-on-5-help/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.