AEM6.5 referencing external js in clientlib | Community
Skip to main content
srinivas_chann1
March 10, 2021
Solved

AEM6.5 referencing external js in clientlib

  • March 10, 2021
  • 1 reply
  • 1592 views

Hi ,

 

I have 2 js scripts in header of html  which we are adding as 

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/ angular.min.js "></script>;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>

 

 

So want to add this to clientlibs of aem, but wanted to know instead of copying the whole js code inside the clientlibs . Is there any way I could reference this js with just urls and still gets  these added clientlibs of aem.

 

The idea in case they the 3party scripts if there is any code change in js it will automatically get reflected instead of making a code change again

 

Thanks

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Vijayalakshmi_S

Hi @srinivas_chann1,

We need to define the source files of desired JS libraries in clientlibs.

Referencing JS with URLs is possible only with <script> tag which is the case for HTML. 

Note : jQuery library that ships with AEM OOTB is included as source files of specific version in clientlibs.

 

1 reply

Vijayalakshmi_S
Vijayalakshmi_SAccepted solution
March 10, 2021

Hi @srinivas_chann1,

We need to define the source files of desired JS libraries in clientlibs.

Referencing JS with URLs is possible only with <script> tag which is the case for HTML. 

Note : jQuery library that ships with AEM OOTB is included as source files of specific version in clientlibs.