Copy link to clipboard
Copied
Hello,
I need to have latest JQuery support in HTML help files
Copy link to clipboard
Copied
What version of FM are you using? Structured or unstructured? What output format?
Copy link to clipboard
Copied
I am using Structured FM 2019 and outout format is Responsive HTML5 help.
Copy link to clipboard
Copied
Check this page: https://help.adobe.com/en_US/framemaker/using/index.html#t=using-framemaker%2Fuser-guide%2Ffrm_gener...
You would need to link jQuery in the <head> section of the page template.
If you host jQuery yourself on your server:
<script src="path/to/your/jquery-javascript/jquery-3.6.0.min.js"></script>
If you reference jQuery remotely, e.g. like this:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
Hope that helps.