diff --git a/curriculum/challenges/portuguese/03-front-end-libraries/jquery/clone-an-element-using-jquery.portuguese.md b/curriculum/challenges/portuguese/03-front-end-libraries/jquery/clone-an-element-using-jquery.portuguese.md index 6558b839ce..0905359879 100644 --- a/curriculum/challenges/portuguese/03-front-end-libraries/jquery/clone-an-element-using-jquery.portuguese.md +++ b/curriculum/challenges/portuguese/03-front-end-libraries/jquery/clone-an-element-using-jquery.portuguese.md @@ -6,14 +6,14 @@ videoUrl: '' localeTitle: Clone um elemento usando jQuery --- -## Description +## Descrição
Além de mover elementos, você também pode copiá-los de um lugar para outro. jQuery tem uma função chamada clone() que faz uma cópia de um elemento. Por exemplo, se quiséssemos copiar o target2 do nosso target2 da left-well para o nosso da right-well , $("#target2").clone().appendTo("#right-well"); : $("#target2").clone().appendTo("#right-well"); Você notou que isso envolve juntar duas funções jQuery? Isso é chamado de function chaining e é uma maneira conveniente de fazer as coisas com o jQuery. Clone seu elemento target5 e anexe-o à sua left-well .
-## Instructions +## Intruções
-## Tests +## Testes
```yml @@ -29,7 +29,7 @@ tests:
-## Challenge Seed +## Desafio
@@ -77,7 +77,7 @@ tests:
-## Solution +## Solução
```js