Eu tenho uma tag div
<div id="theDiv">Where is the image?</div>
Gostaria de adicionar uma tag de imagem dentro da div
Resultado final:
<div id="theDiv"><img id="theImg" src="theImg.png" />Where is the image?</div>
Você já tentou o seguinte:
$('#theDiv').prepend('<img id="theImg" src="theImg.png" />')
meus 2 centavos:
fonte
Você precisa ler a documentação aqui .
fonte
Se quisermos alterar o conteúdo da
<div>
tag sempre que a funçãoimage()
for chamada, temos que fazer o seguinte:Javascript
HTML
fonte
Além do post de Manjeet Kumar (ele não tinha a declaração)
fonte
fonte