1
<!--Container para colocar a imagem de perfil-->
<div id="imagem">
</div>
<!--Botão para selecionar a foto-->
<input id="teste" class="botao_foto_perfil" type="file" name="flefoto"/>
<script>
$('#teste').val();
var img = $('#teste').val();
$('#id_sua_img').attr('src', img);
</script>
did not work, still not appearing
– Bruna
You have to import the jQuery:
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
and do as is reply.– NoobSaibot
Didn’t work the same way
– Bruna