I’am using an html element inside a repeating group. In html, there are reference to external java script files
Example:
<script…> https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js </script…>
Everything works but I’m wondering about performance / bandwidth optimization : If I have 10 elements displayed in repeating group, are the script going to be loaded 10 times ?
I tried to put <script…>https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js </script…> in page html --> doesn’t work
What is the best practice ?
thanks