IDEAS:
- Could we load these via script in template: meta.tpl ? This method seems like if you change skins, you may lose your custom JS load code?
- Prefer to write new custom JR module like "sdJSLoader", and load all our external JS libs in one custom JR module. Using JR module seems easier to include and manage across our many JR sites.
- Need the best way to load external JS libs in one place, so we can make them available to all other custom JR modules.
--
Simple Example - how to achieve this type of loading external JS libs:
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript" src="http://cdn.com/jqwidgets/jqxcore.js"></script>
</head>
Question: How to load external JS - like code above - except instead using a custom JR module to do the loading?
updated by @softdesigns: 05/30/17 10:32:03PM