BIG
jQuery("input[type='file']").on("change", function () {
if(this.files[0].size > 8000000)
{
alert("Please upload file less than 8MB. Thanks!!");
jQuery(this).val('');
}// end if
});
LIST
'!!...JS-HTML' 카테고리의 다른 글
[javascript] jQuery Detect textarea tag height and change sample (0) | 2023.08.26 |
---|---|
[javascript] array to json SAMPLE CODE (0) | 2023.07.25 |
[HTML] Div 를 이용하여 Table Grid 만들기 - SAMPLE CODE (0) | 2023.06.16 |
[javascript] 웹페이지 높이값 구하기 (0) | 2023.01.04 |
[javascript] ckeditor4 한글 줄바꿈 오류 (0) | 2023.01.03 |