1 2 3 | $( "#editDialog form" ).submit( function ( event ) { return validateFileSize( 'profile_image' , 1024*1024*2, 'Profile Image' , event); }); |
1 2 3 4 5 6 7 8 9 10 11 | function validateFileSize(id, limit, label, event) { if ( typeof FileReader !== "undefined" && document.getElementById(id).files.length > 0) { var size = document.getElementById(id).files[0].size; if (size > limit) { alert(label + ' is too large. The file must be less than ' + formatSize(limit) + '.' ); event.preventDefault(); return false ; } } return true ; } |
1 2 3 4 5 6 7 | function formatSize(bytes, decimals) { if (!!!bytes) return 'n/a' ; var sizes = [ 'Bytes' , 'KB' , 'MB' , 'GB' , 'TB' ], i = parseInt(Math.floor(Math.log(bytes) / Math.log(1024))), decMult = Math.pow(10, decimals || 2); return (Math.round((bytes / Math.pow(1024, i)) * decMult)) / decMult + ' ' + sizes[i]; } |
No comments:
Post a Comment