I have a list of allowed file extensions that can be uploaded to my site.
I check them with jQuery Validation plugin.
I'm displaying an error message if they choose a non supported extension.
It looks like
var msg = 'You may only upload files of type ' + allowedExt.join(', ');
Obviously the list doesn't look too flash. I'd like it to look more human readable.
Any way to do this?