From abacc3283c98e276544d5952df7c23993221d937 Mon Sep 17 00:00:00 2001
From: Aathil Ahamed <2017is003@stu.ucsc.cmb.ac.lk>
Date: Thu, 31 Jan 2019 05:17:40 +0530
Subject: [PATCH] updated Jquery.md (#28625)
I have add more some details and some facts
---
guide/english/jquery/index.md | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/guide/english/jquery/index.md b/guide/english/jquery/index.md
index 901966c684..afa96447f5 100644
--- a/guide/english/jquery/index.md
+++ b/guide/english/jquery/index.md
@@ -6,15 +6,22 @@ title: jQuery

-jQuery is the most widely-used JavaScript library, and is used in more than half of all major websites.
+jQuery is the most widely-used JavaScript library, and is used in more than half of all major websites. It's motto is "write less, Do more...!"
jQuery makes web development easier to use by providing a number of 'helper' functions. These help developers to quickly write DOM (Document Object Model) interactions without needing to manually write as much JavaScript themselves.
jQuery adds a global variable with all of the libraries methods attached. The naming convention is to have this global variable as $
. by typing in $.
you have all the jQuery methods at your disposal.
-## Example
+## Get Started
-When a user clicks on a button, all \
elements will be hidden: +Before studying JQuery, you should have basic knowledge of these topics: + 1. HTML + 2. CSS + 3. JavaScript + +## Example Usage + +When a user clicks on a button, all `
` elements will be hidden: ```javascript $(document).ready(function(){