From d8381933754de38bd22cc8e4c6d5089c25f3cd59 Mon Sep 17 00:00:00 2001 From: Shruti Grover Date: Sat, 3 Nov 2018 22:50:26 -0400 Subject: [PATCH] Problem with example description (#30439) "When a user clicks on a button, all \

elements will be hidden:" - here the "\

" is taken as html tag due to which text is moving to next line. The intention of author is to say that all paragraph (\

) tags will be hidden. The "\

" itself is not showing as it's considered an HTML tag. I have added an escape character in front. --- guide/english/jquery/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/jquery/index.md b/guide/english/jquery/index.md index 06c87cc1cd..901966c684 100644 --- a/guide/english/jquery/index.md +++ b/guide/english/jquery/index.md @@ -14,7 +14,7 @@ jQuery adds a global variable with all of the libraries methods attached. The na ## Example -When a user clicks on a button, all

elements will be hidden: +When a user clicks on a button, all \

elements will be hidden: ```javascript $(document).ready(function(){