Reputation: 891
I have a html file, css and js files generated by Adobe Muse tool. When each button is clicked, i want to call some Js function and need to perform the same. I want to know how to integrate the Javascript code with the html file generated from Adobe Muse. My HTML file generated from the Adobe Muse is shared below.
http://pastebin.com/wDrWEmm6
Upvotes: 0
Views: 6616
Reputation: 95
I'm assuming you're just wanting to add your own custom Javascript to an Adobe Muse page. In Muse, this is how you would do it:
To quote Fjenngard from https://forums.adobe.com/thread/1180317
- right click on your page
- choose page properties
- choose metadata
- add javascript in head section
<script type="text/javascript"> ... </script>
or choose object and then insert html you can right click that object and choose edit html and (re)write code.
Upvotes: 0