display uploaded logo javascript | |
---|---|
Subject: | |
/* * DISPLAY LOGO FUNCTION */ function readURL(input){ var reader = new FileReader(); if(input.files && input.files[0]){ if(input.getAttribute('id') == 'logo-image'){ reader.onload = function (e){ $('#image-preview').attr('src', e.target.result); } }//if(input.attr('id') == 'logo-image') if(input.getAttribute('id') == 'banner-image'){ reader.onload = function (e){ console.log(e.target.result); $('.theme-container').css('background-image', 'url("'+e.target.result+'")'); } }//if(input.attr('id') == 'logo-image') reader.readAsDataURL(input.files[0]); }//if (input.files && input.files[0]) } | |
2017-04-12 13:24:37 | gstlouis |
/* var reader = new FileReader(); | gstlouis |
2017-04-12 13:24:42 | |