 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to link jQuery from my local machine?
You can add jQuery using CDN or through downloading it on local machine. For Local Installation, download jQuery library on your local machine and include it in your HTML code. The following are the steps:
- Go to the jQuery website to download the latest version available.
- Now put downloaded jquery-3.2.1.min.js file in a directory of your website, e.g. /jquery.
You can try to run the following code to learn how to link jQuery from local machine:
<html>    <head>       <title>jQuery Example</title>       <script src = "/jquery/jquery-3.2.1.min.js"></script>     <script>          $(document).ready(function(){             document.write("Hello, World!");          });       </script>            </head>        <body>       <h1>Hello</h1>    </body>     </html>Advertisements
 