I have the following problem. How do I load content from a div
to another div
empty that is in the same HTML file?
Example:
<div class="conteudo">
<label> Teste 1 </label>
<label> Teste 1 </label>
</div>
<div class="receber conteudo">
</div>
I wanted to throw all this content from the first div
into the second div
empty through a jQuery function, I already tried the find
method but without success.