Jump to content

upload image limit on 5 help


UnknownPlayer

Recommended Posts

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]

Link to comment
https://forums.phpfreaks.com/topic/248667-upload-image-limit-on-5-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.