You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
714 B
20 lines
714 B
1 year ago
|
/*===============================================*\
|
||
|
|| ############################################# ||
|
||
|
|| # JAKWEB.CH / Version 3.2 # ||
|
||
|
|| # ----------------------------------------- # ||
|
||
|
|| # Copyright 2019 JAKWEB All Rights Reserved # ||
|
||
|
|| ############################################# ||
|
||
|
\*===============================================*/
|
||
|
|
||
|
document.getElementById("uploadavatar").onchange = function () {
|
||
|
var reader = new FileReader();
|
||
|
|
||
|
reader.onload = function(e) {
|
||
|
// get loaded data and render thumbnail.
|
||
|
document.getElementById("customavatar").src = e.target.result;
|
||
|
};
|
||
|
|
||
|
// read the image file as a data URL.
|
||
|
reader.readAsDataURL(this.files[0]);
|
||
|
};
|