I have a "wizard" that calls a java-script external file. This wizard changes around different measurements for a wheelchair depending on numbers inputted into text box's. It calls the java-script, the java-script picks out the right wheelchair and then displays it back into a description box in the html.
A small part of my html code:
<script src="mywebsite/PPwizardA.js" type="text/javascript">
<input id="os5" name="os5" onChange="javascript: wizard()" onKeyDown="if(event.keyCode==13) event.keyCode=9" size="3" tabindex="2" type="text" />
This works in Joomla and works outside of a website (as in sitting on my desktop as just html and js files) But it doesn't work in WordPress.
Does WordPress have a whole other way of calling functions like this?