 
 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 do I put a jQuery code in an external .js file?
Create an external JavaScript file and add the jQuery code in it.
Example
Let’s say the name of the external file is demo.js. To add it in the HTML page, include it like the following −
<html> <head> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script src="demo.js"></script> </head> <body> <h1>Hello</h1> </body> </html>
Above we added jQuery using Google CDN and the external file was included after that.
Add jQuery code in demo.js, since you wanted to place jQuery code −
$(document).ready(function(){
   alert(“amit”)
});
Advertisements
                    