Thank you for the welcome, Mittineague, and for posting that suggestion.
While troubleshooting the page I decided to host the JS files on my hosted server. It seems to be working! This does not make any sense, why would it not work when the files are local and why would it work when they are hosted on the web.
Doesn't Work
Code:
<%= javascript_include_tag "application","ui_demos","jquery-1.3.1","jquery.ui.all" %>
Doesn't Work
Code:
<script type="text/javascript" src="/javascripts/jquery-1.3.1.js"></script>
<script type="text/javascript" src="/javascripts/jquery.ui.all.js"></script>
<script type="text/javascript" src="/javascripts/ui_demos.js"></script>
Works!
Code:
<script type="text/javascript" src="MYDOMAIN/sandbox/jquery-1.3.1.js"></script>
<script type="text/javascript" src="MYDOMAIN/sandbox/jquery.ui.all.js"></script>
<script type="text/javascript" src="MYDOMAIN/sandbox/ui_demos.js"></script>
Bookmarks