I'm try to incorporate an 'interactive' dropdown into a brochure fragment, where you make a selection, then the dropdown changes to suit the selection made. This is the one I'm using - http://www.javascriptkit.com/script/...velcombo.shtml. I've also tried one which uses two dropdowns but the result was the same.
This is to provide some question/answer navigation to various pages depending on the final selection from the dropdown. The dropdown test can be seen in a demo site at http://www.artisan14.co.uk/acatalog/...ntro_Page.html.
The problem is that Actinic is changing the script as follows:
The original code in the fragment ...
... is changed to ...
... in the page source - there are quite a few of these lines for the different options.
Any ideas on how to prevent this?
Malcolm
This is to provide some question/answer navigation to various pages depending on the final selection from the dropdown. The dropdown test can be seen in a demo site at http://www.artisan14.co.uk/acatalog/...ntro_Page.html.
The problem is that Actinic is changing the script as follows:
The original code in the fragment ...
Code:
category[1]=new Option("Student", "combo1")
Code:
category<Actinic:Variable Name = '1'/>=new Option("Student", "combo1")
Any ideas on how to prevent this?
Malcolm
Comment