File "main-20260225113807.js"
Full Path: /home/ichhrkpd/public_html/idcm_old/js/main-20260225113807.js
File size: 274 bytes
MIME-type: text/x-Algol68
Charset: utf-8
function readURL(input,selector) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$(selector).attr('src', e.target.result);
}
reader.readAsDataURL(input.files[0]);
}
}