I am trying to have a drupal site with jmol pages. I have created a node in drupal with the following html:
<html> <head> <script type="text/javascript" src="JmolFolder/Jmol.js"></script> </head> <title>Example 1</title> <body> <applet name="jmol" code="JmolApplet" archive="http://www.byts.co/jmol/JmolApplet.jar" width="350" height="350"> <param name="load"
value="http://www.byts.co/jmol/caf.mol%22%3E <param name="progressbar"value="true"> <param name="script" value="rotate x 90 ; background yellow">
</applet> </body> </html>
the html code works when I try to load it without drupal ( http://www.byts.co/jmol/test1.html) but if I try to load it in drupal, it just does not work ( http://www.byts.co/drupal/?q=node/2)
how can I solve this?