File "main.js"

Full Path: /home/ichhrkpd/public_html/idcm/js/main.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]);
    }
}