From 50db7c557ac2de216d0f33dcb7efe61a12fb45ef Mon Sep 17 00:00:00 2001 From: Chinmay Kunkikar Date: Wed, 14 Apr 2021 02:46:48 +0530 Subject: [PATCH] fix(curriculum): specify id attribute in the instructions (#41716) * fix(curriculum): specify id attribute in the instructions * Update curriculum/challenges/english/03-front-end-libraries/jquery/remove-an-element-using-jquery.md Co-authored-by: Shaun Hamilton <51722130+ShaunSHamilton@users.noreply.github.com> Co-authored-by: Shaun Hamilton <51722130+ShaunSHamilton@users.noreply.github.com> --- .../jquery/remove-an-element-using-jquery.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/03-front-end-libraries/jquery/remove-an-element-using-jquery.md b/curriculum/challenges/english/03-front-end-libraries/jquery/remove-an-element-using-jquery.md index f4517e844f..94c5908436 100644 --- a/curriculum/challenges/english/03-front-end-libraries/jquery/remove-an-element-using-jquery.md +++ b/curriculum/challenges/english/03-front-end-libraries/jquery/remove-an-element-using-jquery.md @@ -12,7 +12,7 @@ Now let's remove an HTML element from your page using jQuery. jQuery has a function called `.remove()` that will remove an HTML element entirely -Remove element `target4` from the page by using the `.remove()` function. +Remove the `#target4` element from the page by using the `.remove()` function. # --hints--