Put 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”)
});


Updated on: 2020-02-20T05:23:20+05:30

7K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements